結果

問題 No.2715 Unique Chimatagram
ユーザー kk0414kk0414
提出日時 2024-04-05 21:41:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 71,956 KB
最終ジャッジ日時 2024-10-01 01:55:58
合計ジャッジ時間 6,408 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,940 KB
testcase_01 AC 42 ms
55,032 KB
testcase_02 AC 41 ms
53,956 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
53,740 KB
testcase_06 AC 42 ms
54,304 KB
testcase_07 AC 45 ms
55,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 63 ms
69,780 KB
testcase_11 AC 61 ms
69,280 KB
testcase_12 WA -
testcase_13 AC 61 ms
71,364 KB
testcase_14 WA -
testcase_15 AC 60 ms
68,976 KB
testcase_16 AC 60 ms
69,592 KB
testcase_17 AC 62 ms
68,988 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 55 ms
70,188 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 60 ms
68,872 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 40 ms
54,744 KB
testcase_34 AC 45 ms
55,220 KB
testcase_35 AC 41 ms
53,600 KB
testcase_36 AC 45 ms
54,120 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 66 ms
71,956 KB
testcase_42 AC 58 ms
67,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())

d = defaultdict(int)

for _ in range(n):
    L = [0]*26
    for si in input():
        x = ord(si) - ord("a")
        L[x] += 1
    d[tuple(L)] += 1

for k in d.keys():
    if d[k] == 1:
        ans = ""
        for i,ai in enumerate(k):
            if ai > 0:
                sai = chr(i+ord("a"))
                ans += sai
        ans += "a"
        print(ans)
        exit()
print("-1")
0