結果

問題 No.587 七対子
ユーザー rymg111rymg111
提出日時 2020-09-22 22:36:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 831 bytes
コンパイル時間 3,245 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-07-19 20:23:31
合計ジャッジ時間 7,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,188 KB
testcase_01 AC 105 ms
40,780 KB
testcase_02 AC 106 ms
40,108 KB
testcase_03 AC 117 ms
41,340 KB
testcase_04 AC 115 ms
41,048 KB
testcase_05 AC 113 ms
41,068 KB
testcase_06 AC 107 ms
41,172 KB
testcase_07 AC 96 ms
39,652 KB
testcase_08 AC 97 ms
39,816 KB
testcase_09 AC 100 ms
40,292 KB
testcase_10 AC 109 ms
40,716 KB
testcase_11 AC 96 ms
39,848 KB
testcase_12 AC 105 ms
41,048 KB
testcase_13 AC 103 ms
40,660 KB
testcase_14 AC 96 ms
39,716 KB
testcase_15 AC 108 ms
41,048 KB
testcase_16 AC 95 ms
39,628 KB
testcase_17 AC 105 ms
40,856 KB
testcase_18 AC 94 ms
40,076 KB
testcase_19 AC 115 ms
40,796 KB
testcase_20 AC 106 ms
39,680 KB
testcase_21 AC 103 ms
40,572 KB
testcase_22 AC 91 ms
39,404 KB
testcase_23 AC 90 ms
39,412 KB
testcase_24 AC 90 ms
39,652 KB
testcase_25 AC 101 ms
40,788 KB
testcase_26 AC 95 ms
39,988 KB
testcase_27 AC 104 ms
40,776 KB
testcase_28 AC 103 ms
40,804 KB
testcase_29 AC 101 ms
41,036 KB
testcase_30 AC 88 ms
39,408 KB
testcase_31 AC 93 ms
39,844 KB
testcase_32 AC 89 ms
39,492 KB
testcase_33 AC 106 ms
41,004 KB
testcase_34 AC 96 ms
40,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// No.587 七対子
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String haipai = sc.next();
		StringBuilder machi = new StringBuilder();
		for(int i = 0; i < 13; i++) {
			String pai = haipai.substring(i, i + 1);
			if(count(pai, haipai) == 2) {
				continue;
			} else if(count(pai, haipai) == 1) {
				machi.append(pai);
				if(machi.length() != 1) {
					machi = new StringBuilder("Impossible");
					break;
				}
			} else {
				machi = new StringBuilder("Impossible");
				break;
			}
		}
		System.out.println(machi);
	}
	public static int count(String pai, String haipai) {
		int index = 0;
		int count = 0;
		while(true) {
			index = haipai.indexOf(pai, index) + 1;
			if(index == 0) {
				break;
			}
			count++;
		}
		return count;
	}
}
0