結果

問題 No.2715 Unique Chimatagram
ユーザー anonymouslyanonymously
提出日時 2024-04-05 21:55:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,628 KB
最終ジャッジ日時 2024-10-01 02:12:01
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 57 ms
12,384 KB
testcase_09 AC 60 ms
13,284 KB
testcase_10 AC 60 ms
12,380 KB
testcase_11 AC 74 ms
13,536 KB
testcase_12 AC 59 ms
12,508 KB
testcase_13 AC 65 ms
13,524 KB
testcase_14 AC 61 ms
12,380 KB
testcase_15 AC 61 ms
12,388 KB
testcase_16 AC 59 ms
12,368 KB
testcase_17 AC 60 ms
12,384 KB
testcase_18 AC 68 ms
13,568 KB
testcase_19 AC 70 ms
13,504 KB
testcase_20 AC 67 ms
13,628 KB
testcase_21 AC 66 ms
13,500 KB
testcase_22 AC 67 ms
13,496 KB
testcase_23 AC 67 ms
13,496 KB
testcase_24 AC 69 ms
13,500 KB
testcase_25 AC 67 ms
13,624 KB
testcase_26 AC 67 ms
13,500 KB
testcase_27 AC 67 ms
13,500 KB
testcase_28 AC 55 ms
10,880 KB
testcase_29 AC 54 ms
10,880 KB
testcase_30 AC 54 ms
10,880 KB
testcase_31 AC 54 ms
10,880 KB
testcase_32 AC 56 ms
10,880 KB
testcase_33 AC 24 ms
10,752 KB
testcase_34 AC 25 ms
10,880 KB
testcase_35 AC 24 ms
10,752 KB
testcase_36 AC 24 ms
10,880 KB
testcase_37 AC 24 ms
10,752 KB
testcase_38 AC 25 ms
10,880 KB
testcase_39 AC 47 ms
11,008 KB
testcase_40 AC 44 ms
11,008 KB
testcase_41 AC 60 ms
12,032 KB
testcase_42 AC 58 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
dd=defaultdict(int)

n=int(input())
for i in range(n):
    s=input()
    for c in range(26):
        t=''.join(sorted(s+chr(ord('a')+c)))
        dd[t]+=1

for k,v in dd.items():
    if v==1:
        print(k)
        break
else:
    print(-1)
0