import java.util.Scanner; //没有用到正则,算是暴力解题 public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); while (sc.hasNextLine()){ String str=sc.nextLine().trim(); int flag=1;//没有重复子字符串的标志位 char[] ch=str.toCharA...