結果

問題 No.2715 Unique Chimatagram
ユーザー ra5anchorra5anchor
提出日時 2024-04-10 00:02:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-02 01:00:53
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 72 ms
77,056 KB
testcase_09 AC 76 ms
77,004 KB
testcase_10 AC 75 ms
77,312 KB
testcase_11 AC 76 ms
77,312 KB
testcase_12 AC 75 ms
76,672 KB
testcase_13 AC 75 ms
76,544 KB
testcase_14 AC 74 ms
76,800 KB
testcase_15 AC 73 ms
77,056 KB
testcase_16 AC 72 ms
77,056 KB
testcase_17 AC 73 ms
76,820 KB
testcase_18 AC 79 ms
77,440 KB
testcase_19 AC 78 ms
77,440 KB
testcase_20 AC 80 ms
77,252 KB
testcase_21 AC 80 ms
77,056 KB
testcase_22 AC 80 ms
77,172 KB
testcase_23 AC 80 ms
77,176 KB
testcase_24 AC 79 ms
77,400 KB
testcase_25 AC 78 ms
76,800 KB
testcase_26 AC 77 ms
77,312 KB
testcase_27 AC 81 ms
77,136 KB
testcase_28 AC 54 ms
61,440 KB
testcase_29 AC 54 ms
61,184 KB
testcase_30 AC 54 ms
61,952 KB
testcase_31 AC 53 ms
61,312 KB
testcase_32 AC 53 ms
61,312 KB
testcase_33 AC 37 ms
51,840 KB
testcase_34 AC 36 ms
51,840 KB
testcase_35 AC 37 ms
51,840 KB
testcase_36 AC 37 ms
51,712 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 53 ms
61,696 KB
testcase_42 AC 63 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = []
for i in range(N):
    s = input()
    t = list(s)
    t.sort()
    s = ''.join(t)
    S.append(s)
S.sort()
T = []
for i in range(N):
    if S.count(S[i]) == 1:
        T.append(S[i])
# print(T)
U = []
for t in T:
    for i in range(26):
        c = chr(ord("a")+i)
        u = list(t)
        u.append(c)
        u.sort()
        u = ''.join(u)
        U.append(u)
# print(U)
for u in U:
    if u not in S:
        print(u)
        exit()
print(-1)
0