結果

問題 No.2715 Unique Chimatagram
ユーザー 寝癖寝癖
提出日時 2024-04-05 21:36:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 81,688 KB
最終ジャッジ日時 2024-10-01 01:50:22
合計ジャッジ時間 4,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,864 KB
testcase_01 AC 36 ms
53,312 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 37 ms
52,864 KB
testcase_04 AC 37 ms
53,976 KB
testcase_05 AC 37 ms
52,832 KB
testcase_06 AC 38 ms
53,040 KB
testcase_07 AC 37 ms
52,884 KB
testcase_08 AC 80 ms
79,800 KB
testcase_09 AC 80 ms
79,996 KB
testcase_10 AC 81 ms
80,136 KB
testcase_11 AC 80 ms
80,780 KB
testcase_12 AC 83 ms
79,960 KB
testcase_13 AC 81 ms
80,196 KB
testcase_14 AC 79 ms
80,036 KB
testcase_15 AC 81 ms
80,104 KB
testcase_16 AC 81 ms
79,932 KB
testcase_17 AC 81 ms
80,304 KB
testcase_18 AC 82 ms
81,080 KB
testcase_19 AC 83 ms
81,512 KB
testcase_20 AC 84 ms
81,440 KB
testcase_21 AC 83 ms
81,252 KB
testcase_22 AC 82 ms
81,512 KB
testcase_23 AC 83 ms
81,244 KB
testcase_24 AC 80 ms
81,432 KB
testcase_25 AC 78 ms
81,688 KB
testcase_26 AC 78 ms
81,452 KB
testcase_27 AC 81 ms
81,656 KB
testcase_28 AC 79 ms
76,400 KB
testcase_29 AC 78 ms
76,424 KB
testcase_30 AC 79 ms
76,340 KB
testcase_31 AC 79 ms
76,264 KB
testcase_32 AC 81 ms
76,532 KB
testcase_33 AC 36 ms
52,128 KB
testcase_34 AC 36 ms
53,148 KB
testcase_35 AC 36 ms
52,156 KB
testcase_36 AC 36 ms
52,704 KB
testcase_37 AC 37 ms
52,560 KB
testcase_38 AC 48 ms
63,028 KB
testcase_39 AC 71 ms
76,536 KB
testcase_40 AC 72 ms
76,756 KB
testcase_41 AC 83 ms
78,312 KB
testcase_42 AC 77 ms
75,996 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