結果

問題 No.2715 Unique Chimatagram
ユーザー tipstar0125tipstar0125
提出日時 2024-04-05 22:15:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,037 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 76,872 KB
最終ジャッジ日時 2024-10-01 02:29:53
合計ジャッジ時間 5,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,008 KB
testcase_01 AC 40 ms
52,560 KB
testcase_02 AC 41 ms
52,416 KB
testcase_03 AC 43 ms
52,944 KB
testcase_04 AC 42 ms
52,836 KB
testcase_05 AC 42 ms
52,256 KB
testcase_06 AC 43 ms
53,260 KB
testcase_07 AC 43 ms
52,196 KB
testcase_08 AC 70 ms
69,100 KB
testcase_09 AC 72 ms
72,648 KB
testcase_10 AC 67 ms
70,748 KB
testcase_11 AC 68 ms
70,680 KB
testcase_12 AC 71 ms
69,808 KB
testcase_13 AC 66 ms
70,568 KB
testcase_14 AC 80 ms
73,868 KB
testcase_15 AC 79 ms
74,436 KB
testcase_16 AC 67 ms
69,260 KB
testcase_17 AC 68 ms
69,640 KB
testcase_18 AC 67 ms
70,488 KB
testcase_19 AC 65 ms
70,284 KB
testcase_20 AC 67 ms
70,892 KB
testcase_21 AC 68 ms
71,336 KB
testcase_22 AC 71 ms
70,020 KB
testcase_23 AC 75 ms
70,612 KB
testcase_24 AC 69 ms
70,164 KB
testcase_25 AC 68 ms
70,868 KB
testcase_26 AC 71 ms
70,612 KB
testcase_27 AC 67 ms
70,244 KB
testcase_28 AC 99 ms
76,528 KB
testcase_29 AC 83 ms
76,312 KB
testcase_30 AC 90 ms
76,316 KB
testcase_31 AC 73 ms
72,840 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 43 ms
52,352 KB
testcase_35 AC 43 ms
52,156 KB
testcase_36 AC 42 ms
52,964 KB
testcase_37 AC 46 ms
54,232 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 86 ms
76,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(N-1):
    cnt1=[0 for _ in range(26)]
    for c in S[i]:
        cnt1[ord(c)-ord("a")]+=1
    sum1=sum(cnt1)
    ok=[True for _ in range(26)]

    for j in range(i+1,N):
        cnt2=[0 for _ in range(26)]
        for c in S[j]:cnt2[ord(c)-ord("a")]+=1
        sum2=sum(cnt2)

        diff_cnt=0
        for k in range(26):
            diff_cnt+=abs(cnt1[k]-cnt2[k])
        
        if diff_cnt==0:
            for k in range(26):ok[k]=False
            break
        if diff_cnt==2 and sum1==sum2:
            b1=0
            b2=0
            for k in range(26):
                if cnt1[k]<cnt2[k]:b1+=1
                if cnt1[k]>cnt2[k]:b2+=1
            if b1==1 and b2==1:
                for k in range(26):
                    if cnt1[k]<cnt2[k]:ok[k]=False
                    if cnt1[k]>cnt2[k]:ok[k]=False
    
    for n,b in enumerate(ok):
        if b:
            print("".join(S[i])+chr(n+ord("a")))
            exit(0)


print(-1)




        

        
0