結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,460 KB
testcase_01 AC 36 ms
53,460 KB
testcase_02 AC 37 ms
53,460 KB
testcase_03 AC 36 ms
53,460 KB
testcase_04 AC 37 ms
53,460 KB
testcase_05 AC 36 ms
53,460 KB
testcase_06 AC 38 ms
53,460 KB
testcase_07 AC 37 ms
53,460 KB
testcase_08 AC 75 ms
79,136 KB
testcase_09 AC 75 ms
79,264 KB
testcase_10 AC 76 ms
79,392 KB
testcase_11 AC 77 ms
79,824 KB
testcase_12 AC 76 ms
79,264 KB
testcase_13 AC 77 ms
79,184 KB
testcase_14 AC 76 ms
79,440 KB
testcase_15 AC 76 ms
79,392 KB
testcase_16 AC 75 ms
79,184 KB
testcase_17 AC 77 ms
79,392 KB
testcase_18 AC 81 ms
80,660 KB
testcase_19 AC 82 ms
80,660 KB
testcase_20 AC 81 ms
80,660 KB
testcase_21 AC 81 ms
80,660 KB
testcase_22 AC 81 ms
80,660 KB
testcase_23 AC 81 ms
80,660 KB
testcase_24 AC 81 ms
80,660 KB
testcase_25 AC 80 ms
80,660 KB
testcase_26 AC 81 ms
80,660 KB
testcase_27 AC 80 ms
80,660 KB
testcase_28 AC 82 ms
76,020 KB
testcase_29 AC 71 ms
76,016 KB
testcase_30 AC 71 ms
76,020 KB
testcase_31 AC 71 ms
76,016 KB
testcase_32 AC 73 ms
76,020 KB
testcase_33 AC 36 ms
53,460 KB
testcase_34 AC 37 ms
53,460 KB
testcase_35 AC 37 ms
53,460 KB
testcase_36 AC 37 ms
53,460 KB
testcase_37 AC 37 ms
53,460 KB
testcase_38 AC 52 ms
64,684 KB
testcase_39 AC 69 ms
76,276 KB
testcase_40 AC 66 ms
76,276 KB
testcase_41 AC 75 ms
77,808 KB
testcase_42 AC 87 ms
75,880 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