結果

問題 No.2715 Unique Chimatagram
ユーザー detteiuudetteiuu
提出日時 2024-04-11 00:36:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 733 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-02 21:07:48
合計ジャッジ時間 8,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 38 ms
57,984 KB
testcase_02 AC 37 ms
57,600 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 55 ms
63,744 KB
testcase_09 AC 57 ms
64,640 KB
testcase_10 AC 52 ms
63,360 KB
testcase_11 AC 51 ms
63,616 KB
testcase_12 AC 55 ms
63,744 KB
testcase_13 AC 54 ms
63,488 KB
testcase_14 AC 64 ms
68,992 KB
testcase_15 AC 65 ms
69,248 KB
testcase_16 AC 52 ms
63,104 KB
testcase_17 AC 53 ms
63,232 KB
testcase_18 AC 58 ms
65,792 KB
testcase_19 AC 57 ms
65,280 KB
testcase_20 AC 59 ms
66,304 KB
testcase_21 AC 60 ms
66,048 KB
testcase_22 AC 57 ms
66,048 KB
testcase_23 AC 57 ms
66,304 KB
testcase_24 AC 57 ms
66,432 KB
testcase_25 AC 56 ms
64,896 KB
testcase_26 AC 59 ms
66,048 KB
testcase_27 AC 59 ms
66,560 KB
testcase_28 AC 178 ms
76,544 KB
testcase_29 AC 98 ms
76,544 KB
testcase_30 AC 128 ms
76,416 KB
testcase_31 AC 87 ms
76,160 KB
testcase_32 AC 253 ms
76,672 KB
testcase_33 AC 35 ms
51,968 KB
testcase_34 AC 40 ms
58,240 KB
testcase_35 AC 41 ms
58,496 KB
testcase_36 AC 35 ms
52,224 KB
testcase_37 AC 34 ms
52,096 KB
testcase_38 AC 61 ms
71,424 KB
testcase_39 AC 1,200 ms
76,672 KB
testcase_40 AC 153 ms
76,160 KB
testcase_41 AC 433 ms
76,928 KB
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [input() for _ in range(N)]

cnt = [[0]*26 for _ in range(N)]
for i in range(N):
    for j in range(len(S[i])):
        cnt[i][ord(S[i][j])-ord("a")] += 1

def check(C, A):
    flag = False
    for i in range(26):
        if C[i] != A[i]:
            if flag:
                return False
            elif C[i]+1 == A[i]:
                flag = True
            else:
                return False
    return flag

for i in range(N):
    A = cnt[i][:]
    for j in range(26):
        A[j] += 1
        c = 0
        for k in range(N):
            if len(S[i]) == len(S[k]) and check(cnt[k], A):
                c += 1
        if c == 1:
            exit(print(S[i] + chr(j+ord("a"))))
        A[j] -= 1

print(-1)
0