結果

問題 No.2715 Unique Chimatagram
ユーザー 寝癖寝癖
提出日時 2024-04-05 21:36:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 80,940 KB
最終ジャッジ日時 2024-04-05 21:36:42
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,332 KB
testcase_01 AC 36 ms
53,332 KB
testcase_02 AC 36 ms
53,332 KB
testcase_03 AC 36 ms
53,332 KB
testcase_04 AC 36 ms
53,332 KB
testcase_05 AC 36 ms
53,332 KB
testcase_06 AC 37 ms
53,332 KB
testcase_07 AC 35 ms
53,332 KB
testcase_08 AC 79 ms
79,536 KB
testcase_09 AC 81 ms
79,536 KB
testcase_10 AC 82 ms
79,792 KB
testcase_11 AC 81 ms
80,056 KB
testcase_12 AC 81 ms
79,532 KB
testcase_13 AC 80 ms
79,808 KB
testcase_14 AC 79 ms
79,532 KB
testcase_15 AC 82 ms
79,536 KB
testcase_16 AC 85 ms
79,536 KB
testcase_17 AC 80 ms
79,540 KB
testcase_18 AC 82 ms
80,940 KB
testcase_19 AC 81 ms
80,940 KB
testcase_20 AC 82 ms
80,940 KB
testcase_21 AC 82 ms
80,940 KB
testcase_22 AC 82 ms
80,940 KB
testcase_23 AC 82 ms
80,940 KB
testcase_24 AC 84 ms
80,940 KB
testcase_25 AC 85 ms
80,940 KB
testcase_26 AC 83 ms
80,940 KB
testcase_27 AC 83 ms
80,940 KB
testcase_28 AC 79 ms
75,972 KB
testcase_29 AC 79 ms
75,972 KB
testcase_30 AC 79 ms
75,844 KB
testcase_31 AC 78 ms
75,844 KB
testcase_32 AC 80 ms
75,844 KB
testcase_33 AC 35 ms
53,332 KB
testcase_34 AC 36 ms
53,332 KB
testcase_35 AC 37 ms
53,332 KB
testcase_36 AC 36 ms
53,332 KB
testcase_37 AC 36 ms
53,332 KB
testcase_38 AC 46 ms
62,324 KB
testcase_39 AC 72 ms
76,224 KB
testcase_40 AC 71 ms
76,224 KB
testcase_41 AC 79 ms
77,892 KB
testcase_42 AC 75 ms
75,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [''.join(sorted(input())) for _ in range(N)]
d = {}

for s in S:
    for c in range(97, 97+26):
        t = s + chr(c)
        t = ''.join(sorted(t))
        if not t in d:
            d[t] = []
        else:
            d[t].append(s)

for k, v in d.items():
    if len(v) == 0:
        print(k)
        exit()

print(-1)
0