結果

問題 No.2715 Unique Chimatagram
ユーザー loop0919loop0919
提出日時 2024-04-05 22:29:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 65,732 KB
最終ジャッジ日時 2024-10-01 02:41:21
合計ジャッジ時間 4,825 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,804 KB
testcase_01 AC 44 ms
53,416 KB
testcase_02 AC 42 ms
54,208 KB
testcase_03 WA -
testcase_04 AC 42 ms
54,628 KB
testcase_05 AC 44 ms
54,496 KB
testcase_06 AC 44 ms
54,736 KB
testcase_07 AC 43 ms
53,840 KB
testcase_08 AC 56 ms
64,232 KB
testcase_09 WA -
testcase_10 AC 57 ms
63,844 KB
testcase_11 AC 58 ms
64,288 KB
testcase_12 AC 57 ms
64,788 KB
testcase_13 AC 59 ms
64,312 KB
testcase_14 AC 60 ms
64,080 KB
testcase_15 AC 58 ms
63,748 KB
testcase_16 AC 57 ms
64,376 KB
testcase_17 AC 57 ms
64,280 KB
testcase_18 AC 57 ms
63,904 KB
testcase_19 AC 59 ms
64,268 KB
testcase_20 AC 57 ms
64,456 KB
testcase_21 AC 56 ms
63,924 KB
testcase_22 AC 56 ms
64,860 KB
testcase_23 AC 56 ms
63,976 KB
testcase_24 AC 59 ms
64,572 KB
testcase_25 AC 58 ms
64,916 KB
testcase_26 AC 58 ms
64,484 KB
testcase_27 AC 59 ms
65,732 KB
testcase_28 AC 61 ms
63,948 KB
testcase_29 AC 58 ms
63,596 KB
testcase_30 AC 55 ms
64,232 KB
testcase_31 AC 55 ms
64,020 KB
testcase_32 AC 55 ms
63,468 KB
testcase_33 AC 44 ms
54,400 KB
testcase_34 AC 42 ms
53,748 KB
testcase_35 AC 42 ms
55,008 KB
testcase_36 AC 41 ms
53,888 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 58 ms
65,296 KB
testcase_42 AC 56 ms
64,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

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

for key, val in Counter(S).items():
    if val == 1:
        print(key + 'a')
        exit()

print(-1)
0