結果

問題 No.2715 Unique Chimatagram
ユーザー loop0919loop0919
提出日時 2024-04-05 22:47:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 94,028 KB
最終ジャッジ日時 2024-10-01 02:51:52
合計ジャッジ時間 5,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
63,488 KB
testcase_01 AC 58 ms
65,024 KB
testcase_02 AC 56 ms
63,616 KB
testcase_03 AC 62 ms
64,256 KB
testcase_04 AC 61 ms
64,256 KB
testcase_05 AC 57 ms
64,000 KB
testcase_06 AC 56 ms
63,872 KB
testcase_07 AC 55 ms
63,760 KB
testcase_08 AC 95 ms
81,920 KB
testcase_09 AC 99 ms
82,048 KB
testcase_10 AC 99 ms
81,792 KB
testcase_11 AC 98 ms
82,560 KB
testcase_12 AC 100 ms
81,716 KB
testcase_13 AC 102 ms
82,176 KB
testcase_14 AC 95 ms
81,920 KB
testcase_15 AC 96 ms
81,792 KB
testcase_16 AC 95 ms
81,836 KB
testcase_17 AC 97 ms
82,044 KB
testcase_18 AC 102 ms
83,712 KB
testcase_19 AC 103 ms
83,668 KB
testcase_20 AC 103 ms
83,680 KB
testcase_21 AC 102 ms
83,456 KB
testcase_22 AC 101 ms
83,828 KB
testcase_23 AC 101 ms
84,096 KB
testcase_24 AC 103 ms
83,712 KB
testcase_25 AC 106 ms
83,684 KB
testcase_26 AC 101 ms
83,636 KB
testcase_27 AC 105 ms
83,712 KB
testcase_28 AC 98 ms
78,208 KB
testcase_29 AC 96 ms
78,336 KB
testcase_30 AC 99 ms
78,336 KB
testcase_31 AC 95 ms
78,464 KB
testcase_32 AC 96 ms
78,464 KB
testcase_33 AC 55 ms
63,488 KB
testcase_34 AC 58 ms
65,024 KB
testcase_35 AC 59 ms
65,024 KB
testcase_36 AC 54 ms
63,872 KB
testcase_37 AC 56 ms
63,744 KB
testcase_38 AC 62 ms
67,712 KB
testcase_39 AC 130 ms
78,720 KB
testcase_40 AC 86 ms
78,080 KB
testcase_41 AC 191 ms
94,028 KB
testcase_42 AC 141 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, Counter
from string import ascii_lowercase

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

if N == 1:
    print(S[0] + 'z')
    exit()

words = []

for c in ascii_lowercase:
    for s in S:
        words.append(''.join(sorted(s + c)))

for c in ascii_lowercase:
    for key, val in Counter(words).items():
        if val == 1:
            print(key)
            exit()

print(-1)
0