結果

問題 No.2715 Unique Chimatagram
ユーザー ks2mks2m
提出日時 2024-04-05 22:44:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 79,116 KB
実行使用メモリ 48,084 KB
最終ジャッジ日時 2024-10-01 02:50:38
合計ジャッジ時間 11,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,028 KB
testcase_01 AC 106 ms
40,996 KB
testcase_02 AC 108 ms
41,072 KB
testcase_03 AC 108 ms
41,212 KB
testcase_04 AC 109 ms
41,304 KB
testcase_05 AC 110 ms
40,996 KB
testcase_06 AC 112 ms
41,284 KB
testcase_07 AC 105 ms
40,588 KB
testcase_08 AC 193 ms
46,644 KB
testcase_09 AC 182 ms
47,040 KB
testcase_10 AC 193 ms
47,192 KB
testcase_11 AC 183 ms
47,336 KB
testcase_12 AC 210 ms
47,936 KB
testcase_13 AC 191 ms
47,652 KB
testcase_14 AC 207 ms
47,712 KB
testcase_15 AC 192 ms
47,628 KB
testcase_16 AC 236 ms
48,084 KB
testcase_17 AC 200 ms
47,292 KB
testcase_18 AC 204 ms
47,176 KB
testcase_19 AC 221 ms
47,560 KB
testcase_20 AC 231 ms
47,492 KB
testcase_21 AC 205 ms
47,376 KB
testcase_22 AC 204 ms
47,400 KB
testcase_23 AC 201 ms
47,344 KB
testcase_24 AC 202 ms
46,896 KB
testcase_25 AC 231 ms
47,484 KB
testcase_26 AC 224 ms
47,340 KB
testcase_27 AC 203 ms
47,148 KB
testcase_28 AC 199 ms
44,800 KB
testcase_29 AC 186 ms
43,964 KB
testcase_30 AC 179 ms
44,420 KB
testcase_31 AC 191 ms
43,956 KB
testcase_32 AC 178 ms
44,472 KB
testcase_33 AC 98 ms
40,204 KB
testcase_34 AC 108 ms
41,140 KB
testcase_35 AC 109 ms
41,144 KB
testcase_36 AC 102 ms
40,784 KB
testcase_37 AC 110 ms
41,384 KB
testcase_38 AC 120 ms
41,464 KB
testcase_39 AC 174 ms
43,532 KB
testcase_40 AC 168 ms
43,948 KB
testcase_41 AC 202 ms
46,736 KB
testcase_42 AC 189 ms
45,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[][] s = new char[n][];
		for (int i = 0; i < n; i++) {
			s[i] = sc.next().toCharArray();
		}
		sc.close();

		Map<String, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
			for (char c = 'a'; c <= 'z'; c++) {
				int len = s[i].length;
				char[] t = new char[len + 1];
				System.arraycopy(s[i], 0, t, 0, len);
				t[len] = c;
				Arrays.sort(t);
				String k = String.valueOf(t);
				map.put(k, map.getOrDefault(k, 0) + 1);
			}
		}
		for (String k : map.keySet()) {
			if (map.get(k) == 1) {
				System.out.println(k);
				return;
			}
		}
		System.out.println(-1);
	}
}
0