結果

問題 No.2715 Unique Chimatagram
ユーザー kk0414kk0414
提出日時 2024-04-09 22:46:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 795 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,336 KB
最終ジャッジ日時 2024-10-01 23:22:39
合計ジャッジ時間 6,627 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,064 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 40 ms
53,700 KB
testcase_04 AC 39 ms
52,724 KB
testcase_05 AC 40 ms
52,188 KB
testcase_06 AC 40 ms
53,064 KB
testcase_07 AC 39 ms
53,552 KB
testcase_08 AC 66 ms
70,952 KB
testcase_09 AC 73 ms
71,792 KB
testcase_10 AC 88 ms
73,652 KB
testcase_11 AC 71 ms
70,796 KB
testcase_12 AC 68 ms
69,676 KB
testcase_13 AC 69 ms
70,844 KB
testcase_14 AC 71 ms
73,068 KB
testcase_15 AC 73 ms
72,352 KB
testcase_16 AC 69 ms
71,024 KB
testcase_17 AC 68 ms
70,176 KB
testcase_18 AC 63 ms
69,404 KB
testcase_19 AC 74 ms
73,600 KB
testcase_20 AC 62 ms
69,928 KB
testcase_21 AC 69 ms
73,596 KB
testcase_22 AC 86 ms
73,676 KB
testcase_23 AC 77 ms
75,088 KB
testcase_24 AC 72 ms
73,640 KB
testcase_25 AC 85 ms
74,692 KB
testcase_26 AC 81 ms
75,336 KB
testcase_27 AC 79 ms
73,816 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 42 ms
53,952 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 39 ms
54,172 KB
testcase_37 AC 39 ms
52,896 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [[0]*26 for _ in range(N)]
cand = []
for i in range(N):
    s = input()
    cand.append(s)
    for si in s:
        j = ord(si)-ord("a")
        L[i][j] += 1

for i in range(N):
    OK = [False] * N
    OK[i] = True
    skips = set()
    for j in range(N):
        if i==j:continue
        flag = False
        for k in range(26):
            if L[j][k] > L[i][k]:
                flag = True
                if L[j][k] - L[i][k] == 1:
                    skips.add(k)
        OK[j] = True
    if all(OK) and len(skips) < 26: break

if not all(OK):
    print("-1")
else:
    if len(skips) == 26:
        print("-1")
    else:
        for x in range(26):
            if not x in skips:
                break
        ans = cand[i] + chr(x+ord("a"))
        print(ans)
        
0