結果

問題 No.587 七対子
ユーザー shinwisteriashinwisteria
提出日時 2018-03-08 19:59:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 4,575 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-10-05 08:13:38
合計ジャッジ時間 10,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
41,520 KB
testcase_01 AC 153 ms
41,516 KB
testcase_02 AC 153 ms
41,468 KB
testcase_03 AC 152 ms
41,316 KB
testcase_04 AC 149 ms
41,192 KB
testcase_05 AC 154 ms
40,992 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 154 ms
41,728 KB
testcase_10 AC 135 ms
40,864 KB
testcase_11 WA -
testcase_12 AC 131 ms
40,956 KB
testcase_13 AC 133 ms
41,492 KB
testcase_14 AC 130 ms
41,004 KB
testcase_15 AC 132 ms
41,492 KB
testcase_16 AC 130 ms
41,240 KB
testcase_17 AC 153 ms
41,620 KB
testcase_18 AC 157 ms
41,660 KB
testcase_19 AC 152 ms
41,384 KB
testcase_20 AC 153 ms
41,388 KB
testcase_21 AC 155 ms
40,868 KB
testcase_22 AC 151 ms
41,192 KB
testcase_23 AC 155 ms
41,652 KB
testcase_24 AC 155 ms
40,952 KB
testcase_25 AC 152 ms
41,588 KB
testcase_26 AC 154 ms
41,320 KB
testcase_27 AC 154 ms
41,064 KB
testcase_28 WA -
testcase_29 AC 152 ms
41,544 KB
testcase_30 AC 152 ms
41,288 KB
testcase_31 AC 158 ms
41,344 KB
testcase_32 AC 152 ms
41,396 KB
testcase_33 AC 151 ms
41,092 KB
testcase_34 AC 150 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.ArrayList;
import java.util.Scanner;
public class Con587 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String str = s.next();
		s.close();

		ArrayList<String> delete = new ArrayList<>();
		boolean ft = false;
		String ans = "";
		for(int i = 0;i < 7;i++){
			String c = str.substring(0,1);
			str = str.substring(1, str.length());
			if(delete.contains(c)){
				break;
			}else{
				delete.add(c);
				if(str.indexOf(c) == -1 && !ft){
					ft = true;
					ans = c;
					continue;
				}else if(str.indexOf(c) == -1 && ft){
					ft = false;
					break;
				}else{
					str = str.replaceFirst(c, "");
				}
			}
		}

		if(ft){
			System.out.println(ans);
		}else{
			System.out.println("Impossible");
		}

	}

}
0