結果

問題 No.2715 Unique Chimatagram
ユーザー playerplayer
提出日時 2024-04-27 16:59:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-11-15 20:56:13
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,120 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 45 ms
53,760 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 45 ms
54,016 KB
testcase_07 AC 47 ms
53,760 KB
testcase_08 AC 96 ms
80,128 KB
testcase_09 AC 98 ms
80,128 KB
testcase_10 AC 98 ms
80,256 KB
testcase_11 AC 99 ms
80,768 KB
testcase_12 AC 97 ms
80,256 KB
testcase_13 AC 98 ms
80,128 KB
testcase_14 AC 97 ms
80,256 KB
testcase_15 AC 97 ms
80,000 KB
testcase_16 AC 96 ms
79,872 KB
testcase_17 AC 98 ms
80,000 KB
testcase_18 AC 103 ms
81,152 KB
testcase_19 AC 102 ms
81,536 KB
testcase_20 AC 103 ms
81,408 KB
testcase_21 AC 103 ms
81,792 KB
testcase_22 AC 103 ms
81,280 KB
testcase_23 AC 103 ms
81,152 KB
testcase_24 AC 105 ms
81,408 KB
testcase_25 AC 104 ms
81,280 KB
testcase_26 AC 103 ms
81,536 KB
testcase_27 AC 103 ms
81,408 KB
testcase_28 AC 95 ms
76,672 KB
testcase_29 AC 93 ms
76,416 KB
testcase_30 AC 93 ms
76,672 KB
testcase_31 AC 92 ms
77,056 KB
testcase_32 AC 94 ms
77,184 KB
testcase_33 AC 45 ms
53,120 KB
testcase_34 AC 45 ms
53,632 KB
testcase_35 AC 45 ms
53,376 KB
testcase_36 AC 45 ms
53,760 KB
testcase_37 AC 45 ms
53,504 KB
testcase_38 AC 57 ms
62,592 KB
testcase_39 AC 88 ms
76,544 KB
testcase_40 AC 79 ms
73,472 KB
testcase_41 AC 99 ms
78,464 KB
testcase_42 AC 90 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
S = [list(input()) for _ in range(n)]
alpha = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']

d = defaultdict(int)

for i in range(n):
    for j in range(26):
        tmp = S[i]+[alpha[j]]
        tmp.sort()
        d["".join(tmp)] += 1
        
for key in d.keys():
    if d[key] == 1:
        print(key)
        exit()
        
print(-1)
0