結果

問題 No.2715 Unique Chimatagram
ユーザー flippergoflippergo
提出日時 2024-11-08 19:51:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 968 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-11-08 19:51:38
合計ジャッジ時間 5,373 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 64 ms
65,024 KB
testcase_09 AC 63 ms
65,152 KB
testcase_10 AC 63 ms
65,152 KB
testcase_11 AC 63 ms
65,792 KB
testcase_12 AC 63 ms
65,280 KB
testcase_13 AC 64 ms
65,280 KB
testcase_14 AC 62 ms
64,896 KB
testcase_15 AC 63 ms
65,408 KB
testcase_16 AC 63 ms
64,768 KB
testcase_17 AC 64 ms
65,152 KB
testcase_18 AC 72 ms
69,120 KB
testcase_19 AC 73 ms
68,736 KB
testcase_20 AC 72 ms
69,120 KB
testcase_21 AC 73 ms
69,120 KB
testcase_22 AC 71 ms
68,992 KB
testcase_23 AC 72 ms
68,864 KB
testcase_24 AC 73 ms
69,248 KB
testcase_25 AC 72 ms
68,608 KB
testcase_26 AC 72 ms
69,120 KB
testcase_27 AC 71 ms
68,992 KB
testcase_28 AC 62 ms
64,256 KB
testcase_29 AC 62 ms
64,000 KB
testcase_30 AC 62 ms
63,872 KB
testcase_31 AC 61 ms
63,872 KB
testcase_32 AC 63 ms
64,128 KB
testcase_33 AC 40 ms
51,840 KB
testcase_34 AC 42 ms
52,096 KB
testcase_35 AC 40 ms
51,968 KB
testcase_36 AC 40 ms
52,096 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 62 ms
64,256 KB
testcase_42 AC 63 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [tuple(sorted(list(input()))) for _ in range(N)]
C = {}
for i in range(N):
    if S[i] not in C:
        C[S[i]] = []
    C[S[i]].append(i)
L = {}
for s in C:
    if len(C[s])>1:continue
    i = C[s][0]
    if len(S[i]) not in L:
        L[len(S[i])] = []
    L[len(S[i])].append(i)
def dist(x,y):
    cnt = 0
    for i in range(len(x)):
        if x[i]!=y[i]:
            cnt += 1
    return cnt
Let = set([chr(i) for i in range(97,123)])
T = ""
for l in L:
    for i in L[l]:
        A = set()
        for j in L[l]:
            if i==j:continue
            if dist(S[i],S[j])==1:
                for k in range(l):
                    if S[i][k]!=S[j][k]:
                        A.add(S[j][k])
                        break
        if len(A)<26:
            A = set(A)
            B = Let-A
            b = B.pop()
            T = "".join(list(S[i])+[b])
            break
    if T!="":break
if T!="":
    print(T)
else:
    print(-1)
        
0