結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 H20H20
提出日時 2024-04-06 15:30:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 83,412 KB
最終ジャッジ日時 2024-04-06 15:30:11
合計ジャッジ時間 6,528 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,656 KB
testcase_01 AC 56 ms
63,656 KB
testcase_02 AC 59 ms
63,656 KB
testcase_03 AC 58 ms
63,656 KB
testcase_04 AC 57 ms
63,656 KB
testcase_05 AC 56 ms
63,656 KB
testcase_06 AC 56 ms
63,656 KB
testcase_07 AC 57 ms
63,656 KB
testcase_08 AC 98 ms
81,236 KB
testcase_09 AC 97 ms
81,236 KB
testcase_10 AC 96 ms
81,236 KB
testcase_11 AC 100 ms
81,748 KB
testcase_12 AC 97 ms
81,108 KB
testcase_13 AC 98 ms
81,108 KB
testcase_14 AC 103 ms
81,236 KB
testcase_15 AC 99 ms
81,236 KB
testcase_16 AC 97 ms
81,236 KB
testcase_17 AC 98 ms
81,236 KB
testcase_18 AC 107 ms
83,412 KB
testcase_19 AC 106 ms
83,412 KB
testcase_20 AC 107 ms
83,412 KB
testcase_21 AC 105 ms
83,412 KB
testcase_22 AC 105 ms
83,412 KB
testcase_23 AC 133 ms
83,412 KB
testcase_24 AC 106 ms
83,412 KB
testcase_25 AC 106 ms
83,412 KB
testcase_26 AC 107 ms
83,412 KB
testcase_27 AC 108 ms
83,412 KB
testcase_28 AC 96 ms
77,396 KB
testcase_29 AC 94 ms
77,396 KB
testcase_30 AC 92 ms
77,396 KB
testcase_31 AC 93 ms
77,396 KB
testcase_32 AC 94 ms
77,404 KB
testcase_33 AC 58 ms
63,656 KB
testcase_34 AC 58 ms
63,656 KB
testcase_35 AC 55 ms
63,656 KB
testcase_36 AC 55 ms
63,656 KB
testcase_37 AC 56 ms
63,656 KB
testcase_38 AC 72 ms
73,328 KB
testcase_39 AC 91 ms
77,532 KB
testcase_40 AC 89 ms
77,532 KB
testcase_41 AC 98 ms
78,940 KB
testcase_42 AC 94 ms
77,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import string
N = int(input())
C = collections.Counter()
for _ in range(N):
    S = input()
    for c in string.ascii_lowercase:
        C[''.join(sorted(list(S+c)))]+=1
for k,v in C.items():
    if v==1:
        print(k)
        exit()
print(-1)

0