結果

問題 No.2715 Unique Chimatagram
ユーザー vwxyzvwxyz
提出日時 2024-06-02 11:45:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 77,280 KB
最終ジャッジ日時 2024-06-02 11:45:35
合計ジャッジ時間 5,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 42 ms
59,264 KB
testcase_02 AC 38 ms
57,728 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 54 ms
64,640 KB
testcase_09 AC 64 ms
67,584 KB
testcase_10 AC 53 ms
64,688 KB
testcase_11 AC 54 ms
65,152 KB
testcase_12 AC 52 ms
64,384 KB
testcase_13 AC 52 ms
65,024 KB
testcase_14 AC 63 ms
70,144 KB
testcase_15 AC 62 ms
69,376 KB
testcase_16 AC 53 ms
64,512 KB
testcase_17 AC 53 ms
64,548 KB
testcase_18 AC 60 ms
68,480 KB
testcase_19 AC 71 ms
69,504 KB
testcase_20 AC 60 ms
68,864 KB
testcase_21 AC 60 ms
68,864 KB
testcase_22 AC 61 ms
69,248 KB
testcase_23 AC 60 ms
68,844 KB
testcase_24 AC 63 ms
70,144 KB
testcase_25 AC 61 ms
68,864 KB
testcase_26 AC 68 ms
68,736 KB
testcase_27 AC 68 ms
69,632 KB
testcase_28 AC 91 ms
77,280 KB
testcase_29 AC 79 ms
76,540 KB
testcase_30 AC 85 ms
76,928 KB
testcase_31 AC 77 ms
77,056 KB
testcase_32 AC 127 ms
76,956 KB
testcase_33 AC 36 ms
52,224 KB
testcase_34 AC 41 ms
59,904 KB
testcase_35 AC 43 ms
59,392 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 38 ms
52,352 KB
testcase_38 AC 65 ms
69,760 KB
testcase_39 AC 602 ms
76,800 KB
testcase_40 AC 119 ms
76,800 KB
testcase_41 AC 393 ms
76,928 KB
testcase_42 AC 103 ms
76,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=[[ord(s)-97 for s in input()] for i in range(N)]
C=[[0]*26 for i in range(N)]
for i in range(N):
    for s in S[i]:
        C[i][s]+=1
for i in range(N):
    for a in range(26):
        T=S[i]+[a]
        cnt=[0]*26
        for t in T:
            cnt[t]+=1
        for j in range(N):
            if i==j:
                continue
            if len(S[i])!=len(S[j]):
                continue
            if all(C[j][b]<=cnt[b] for b in range(26)) and sum(cnt)>=sum(C[j]):
                break
        else:
            ans=""
            for a in range(26):
                ans+=chr(a+97)*cnt[a]
            print(ans)
            exit()
print(-1)
0