結果

問題 No.2715 Unique Chimatagram
ユーザー n_nan_na
提出日時 2024-04-06 01:30:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-04-06 01:31:05
合計ジャッジ時間 5,378 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,460 KB
testcase_01 AC 36 ms
53,460 KB
testcase_02 AC 36 ms
53,460 KB
testcase_03 AC 38 ms
53,460 KB
testcase_04 AC 36 ms
53,460 KB
testcase_05 AC 38 ms
53,460 KB
testcase_06 AC 36 ms
53,460 KB
testcase_07 AC 40 ms
53,460 KB
testcase_08 AC 74 ms
79,620 KB
testcase_09 AC 74 ms
79,620 KB
testcase_10 AC 75 ms
79,620 KB
testcase_11 AC 75 ms
80,004 KB
testcase_12 AC 74 ms
79,620 KB
testcase_13 AC 78 ms
79,620 KB
testcase_14 AC 74 ms
80,132 KB
testcase_15 AC 75 ms
79,620 KB
testcase_16 AC 76 ms
79,620 KB
testcase_17 AC 76 ms
79,620 KB
testcase_18 AC 79 ms
80,896 KB
testcase_19 AC 79 ms
80,896 KB
testcase_20 AC 79 ms
80,896 KB
testcase_21 AC 78 ms
80,896 KB
testcase_22 AC 79 ms
80,896 KB
testcase_23 AC 80 ms
80,896 KB
testcase_24 AC 91 ms
80,896 KB
testcase_25 AC 81 ms
80,896 KB
testcase_26 AC 80 ms
80,896 KB
testcase_27 AC 79 ms
80,896 KB
testcase_28 AC 71 ms
76,156 KB
testcase_29 AC 68 ms
76,148 KB
testcase_30 AC 70 ms
76,156 KB
testcase_31 AC 76 ms
76,148 KB
testcase_32 AC 75 ms
76,156 KB
testcase_33 AC 35 ms
53,460 KB
testcase_34 AC 35 ms
53,460 KB
testcase_35 AC 36 ms
53,460 KB
testcase_36 AC 40 ms
53,460 KB
testcase_37 AC 37 ms
53,460 KB
testcase_38 AC 52 ms
64,836 KB
testcase_39 AC 61 ms
74,236 KB
testcase_40 AC 58 ms
73,084 KB
testcase_41 AC 74 ms
77,684 KB
testcase_42 AC 79 ms
76,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

dct = dict()
for _ in range(N):
    s = list(input())
    for i in range(26):
        t = s[:]
        t.append(chr(i+ord("a")))
        t.sort()
        t = "".join(t)
        if t not in dct:
            dct[t] = 0
        dct[t] += 1

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