結果

問題 No.2715 Unique Chimatagram
ユーザー H20H20
提出日時 2024-04-06 15:27:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 65,976 KB
最終ジャッジ日時 2024-10-01 03:52:17
合計ジャッジ時間 4,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,044 KB
testcase_01 AC 42 ms
55,148 KB
testcase_02 AC 42 ms
53,720 KB
testcase_03 WA -
testcase_04 AC 42 ms
54,272 KB
testcase_05 AC 43 ms
53,556 KB
testcase_06 AC 43 ms
53,996 KB
testcase_07 AC 45 ms
55,168 KB
testcase_08 AC 60 ms
63,916 KB
testcase_09 WA -
testcase_10 AC 56 ms
64,028 KB
testcase_11 AC 55 ms
65,616 KB
testcase_12 AC 56 ms
64,348 KB
testcase_13 AC 56 ms
65,920 KB
testcase_14 AC 52 ms
64,132 KB
testcase_15 AC 53 ms
65,500 KB
testcase_16 AC 52 ms
64,152 KB
testcase_17 AC 55 ms
64,972 KB
testcase_18 AC 56 ms
65,976 KB
testcase_19 AC 57 ms
65,384 KB
testcase_20 AC 58 ms
65,796 KB
testcase_21 AC 62 ms
65,356 KB
testcase_22 AC 63 ms
65,308 KB
testcase_23 AC 59 ms
65,932 KB
testcase_24 AC 62 ms
64,688 KB
testcase_25 AC 55 ms
65,300 KB
testcase_26 AC 54 ms
65,336 KB
testcase_27 AC 53 ms
65,296 KB
testcase_28 AC 54 ms
64,832 KB
testcase_29 AC 56 ms
63,912 KB
testcase_30 AC 54 ms
65,148 KB
testcase_31 AC 58 ms
65,820 KB
testcase_32 AC 58 ms
64,708 KB
testcase_33 AC 41 ms
54,244 KB
testcase_34 AC 39 ms
54,484 KB
testcase_35 AC 39 ms
53,956 KB
testcase_36 AC 39 ms
55,640 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 57 ms
64,100 KB
testcase_42 AC 55 ms
64,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0