結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 rin204rin204
提出日時 2024-04-07 10:45:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 81,204 KB
最終ジャッジ日時 2024-10-01 04:24:47
合計ジャッジ時間 4,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 36 ms
53,364 KB
testcase_02 AC 38 ms
52,456 KB
testcase_03 AC 37 ms
53,024 KB
testcase_04 AC 38 ms
54,176 KB
testcase_05 AC 39 ms
52,620 KB
testcase_06 AC 38 ms
53,752 KB
testcase_07 AC 37 ms
52,956 KB
testcase_08 AC 74 ms
79,468 KB
testcase_09 AC 79 ms
80,268 KB
testcase_10 AC 76 ms
79,728 KB
testcase_11 AC 81 ms
80,312 KB
testcase_12 AC 78 ms
79,860 KB
testcase_13 AC 80 ms
79,764 KB
testcase_14 AC 79 ms
79,732 KB
testcase_15 AC 75 ms
79,940 KB
testcase_16 AC 79 ms
79,552 KB
testcase_17 AC 79 ms
79,800 KB
testcase_18 AC 80 ms
81,028 KB
testcase_19 AC 80 ms
80,844 KB
testcase_20 AC 77 ms
81,140 KB
testcase_21 AC 80 ms
81,012 KB
testcase_22 AC 77 ms
80,900 KB
testcase_23 AC 78 ms
81,136 KB
testcase_24 AC 82 ms
81,204 KB
testcase_25 AC 81 ms
81,116 KB
testcase_26 AC 80 ms
81,104 KB
testcase_27 AC 87 ms
81,180 KB
testcase_28 AC 76 ms
76,336 KB
testcase_29 AC 68 ms
76,376 KB
testcase_30 AC 69 ms
76,544 KB
testcase_31 AC 68 ms
76,532 KB
testcase_32 AC 72 ms
76,316 KB
testcase_33 AC 38 ms
52,836 KB
testcase_34 AC 38 ms
52,600 KB
testcase_35 AC 37 ms
53,748 KB
testcase_36 AC 36 ms
53,000 KB
testcase_37 AC 35 ms
52,800 KB
testcase_38 AC 53 ms
65,644 KB
testcase_39 AC 70 ms
76,520 KB
testcase_40 AC 61 ms
76,684 KB
testcase_41 AC 74 ms
78,028 KB
testcase_42 AC 69 ms
76,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
cnt = {}
for _ in range(n):
    S = input()
    for i in range(26):
        T = "".join(sorted(S + chr(97 + i)))
        cnt[T] = cnt.get(T, 0) + 1

for k, v in cnt.items():
    if v == 1:
        print(k)
        break
else:
    print(-1)
0