結果

問題 No.2715 Unique Chimatagram
ユーザー kk0414kk0414
提出日時 2024-04-10 23:21:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 828 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-02 21:04:01
合計ジャッジ時間 5,762 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 44 ms
52,224 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 63 ms
67,584 KB
testcase_09 AC 63 ms
68,736 KB
testcase_10 AC 62 ms
67,456 KB
testcase_11 AC 64 ms
67,584 KB
testcase_12 AC 63 ms
67,456 KB
testcase_13 AC 63 ms
67,328 KB
testcase_14 AC 75 ms
73,600 KB
testcase_15 AC 74 ms
72,596 KB
testcase_16 AC 65 ms
68,096 KB
testcase_17 AC 62 ms
67,712 KB
testcase_18 AC 65 ms
68,992 KB
testcase_19 AC 63 ms
69,248 KB
testcase_20 AC 64 ms
69,248 KB
testcase_21 AC 65 ms
69,120 KB
testcase_22 AC 64 ms
69,248 KB
testcase_23 AC 64 ms
68,864 KB
testcase_24 AC 65 ms
69,048 KB
testcase_25 AC 64 ms
68,736 KB
testcase_26 AC 65 ms
68,736 KB
testcase_27 AC 65 ms
69,184 KB
testcase_28 AC 114 ms
76,456 KB
testcase_29 AC 87 ms
76,672 KB
testcase_30 AC 101 ms
77,056 KB
testcase_31 AC 77 ms
73,848 KB
testcase_32 AC 172 ms
77,056 KB
testcase_33 AC 39 ms
52,096 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 40 ms
52,096 KB
testcase_36 AC 41 ms
52,352 KB
testcase_37 AC 40 ms
52,224 KB
testcase_38 AC 51 ms
62,208 KB
testcase_39 AC 255 ms
76,928 KB
testcase_40 AC 92 ms
76,680 KB
testcase_41 AC 828 ms
76,928 KB
testcase_42 AC 258 ms
76,800 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]:
                continue
            flag = True
            if L[j][k] - L[i][k] == 1:
                NG.append(k)
        OK[j] = flag
        if len(NG)==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