結果

問題 No.2715 Unique Chimatagram
ユーザー kk0414kk0414
提出日時 2024-04-09 22:51:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 851 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 77,212 KB
最終ジャッジ日時 2024-10-01 23:28:29
合計ジャッジ時間 8,350 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,760 KB
testcase_01 AC 36 ms
52,560 KB
testcase_02 AC 37 ms
52,928 KB
testcase_03 AC 37 ms
53,504 KB
testcase_04 AC 35 ms
52,680 KB
testcase_05 AC 36 ms
53,540 KB
testcase_06 AC 38 ms
52,360 KB
testcase_07 AC 37 ms
52,492 KB
testcase_08 AC 231 ms
76,520 KB
testcase_09 AC 324 ms
76,972 KB
testcase_10 AC 124 ms
76,556 KB
testcase_11 AC 117 ms
76,864 KB
testcase_12 WA -
testcase_13 AC 188 ms
76,520 KB
testcase_14 AC 146 ms
77,040 KB
testcase_15 AC 82 ms
76,664 KB
testcase_16 AC 115 ms
76,636 KB
testcase_17 AC 93 ms
76,432 KB
testcase_18 AC 59 ms
68,720 KB
testcase_19 AC 57 ms
69,140 KB
testcase_20 AC 58 ms
69,804 KB
testcase_21 AC 58 ms
68,892 KB
testcase_22 AC 59 ms
69,736 KB
testcase_23 AC 58 ms
68,620 KB
testcase_24 AC 59 ms
68,976 KB
testcase_25 AC 58 ms
68,108 KB
testcase_26 AC 59 ms
69,880 KB
testcase_27 AC 59 ms
69,068 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 37 ms
52,824 KB
testcase_34 AC 37 ms
53,304 KB
testcase_35 AC 36 ms
52,968 KB
testcase_36 AC 35 ms
53,240 KB
testcase_37 AC 34 ms
53,216 KB
testcase_38 AC 48 ms
62,808 KB
testcase_39 AC 213 ms
76,668 KB
testcase_40 AC 82 ms
76,852 KB
testcase_41 AC 700 ms
76,908 KB
testcase_42 AC 241 ms
76,584 KB
権限があれば一括ダウンロードができます

ソースコード

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
        NG = []
        for k in range(26):
            if L[j][k] > L[i][k]:
                flag = True
                NG.append(k)
        OK[j] = flag
        if len(NG)==1 and L[j][NG[0]] - L[i][NG[0]] == 1:
            skips.add(NG[0])
    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