結果

問題 No.2715 Unique Chimatagram
ユーザー H20H20
提出日時 2024-04-06 15:30:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-10-01 03:52:27
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
64,112 KB
testcase_01 AC 59 ms
64,736 KB
testcase_02 AC 57 ms
64,328 KB
testcase_03 AC 53 ms
65,756 KB
testcase_04 AC 54 ms
64,664 KB
testcase_05 AC 54 ms
64,668 KB
testcase_06 AC 53 ms
64,760 KB
testcase_07 AC 54 ms
64,128 KB
testcase_08 AC 90 ms
81,628 KB
testcase_09 AC 89 ms
81,476 KB
testcase_10 AC 90 ms
81,596 KB
testcase_11 AC 92 ms
82,092 KB
testcase_12 AC 90 ms
81,548 KB
testcase_13 AC 90 ms
81,856 KB
testcase_14 AC 91 ms
81,804 KB
testcase_15 AC 90 ms
81,484 KB
testcase_16 AC 92 ms
81,708 KB
testcase_17 AC 91 ms
81,836 KB
testcase_18 AC 99 ms
83,680 KB
testcase_19 AC 99 ms
83,964 KB
testcase_20 AC 99 ms
83,972 KB
testcase_21 AC 101 ms
84,012 KB
testcase_22 AC 100 ms
83,704 KB
testcase_23 AC 98 ms
84,096 KB
testcase_24 AC 99 ms
84,052 KB
testcase_25 AC 100 ms
83,712 KB
testcase_26 AC 102 ms
83,712 KB
testcase_27 AC 99 ms
84,096 KB
testcase_28 AC 90 ms
77,688 KB
testcase_29 AC 85 ms
77,664 KB
testcase_30 AC 87 ms
77,960 KB
testcase_31 AC 87 ms
77,600 KB
testcase_32 AC 87 ms
77,668 KB
testcase_33 AC 55 ms
64,680 KB
testcase_34 AC 53 ms
64,312 KB
testcase_35 AC 54 ms
64,812 KB
testcase_36 AC 54 ms
64,800 KB
testcase_37 AC 59 ms
64,600 KB
testcase_38 AC 75 ms
72,968 KB
testcase_39 AC 88 ms
78,172 KB
testcase_40 AC 88 ms
78,060 KB
testcase_41 AC 100 ms
79,244 KB
testcase_42 AC 92 ms
77,504 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