結果

問題 No.2715 Unique Chimatagram
ユーザー vwxyzvwxyz
提出日時 2024-06-02 11:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-02 11:57:15
合計ジャッジ時間 4,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 40 ms
59,136 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 31 ms
52,224 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 31 ms
52,352 KB
testcase_06 AC 32 ms
52,736 KB
testcase_07 AC 33 ms
52,096 KB
testcase_08 AC 48 ms
64,256 KB
testcase_09 AC 53 ms
67,840 KB
testcase_10 AC 48 ms
64,640 KB
testcase_11 AC 48 ms
64,896 KB
testcase_12 AC 48 ms
64,640 KB
testcase_13 AC 49 ms
64,896 KB
testcase_14 AC 56 ms
69,760 KB
testcase_15 AC 55 ms
68,992 KB
testcase_16 AC 46 ms
64,384 KB
testcase_17 AC 60 ms
64,128 KB
testcase_18 AC 54 ms
68,864 KB
testcase_19 AC 55 ms
69,248 KB
testcase_20 AC 55 ms
68,864 KB
testcase_21 AC 55 ms
68,864 KB
testcase_22 AC 58 ms
69,504 KB
testcase_23 AC 55 ms
68,608 KB
testcase_24 AC 56 ms
69,632 KB
testcase_25 AC 55 ms
69,376 KB
testcase_26 AC 54 ms
68,224 KB
testcase_27 AC 69 ms
69,760 KB
testcase_28 AC 79 ms
76,800 KB
testcase_29 AC 69 ms
76,544 KB
testcase_30 AC 74 ms
76,648 KB
testcase_31 AC 62 ms
73,216 KB
testcase_32 AC 99 ms
76,756 KB
testcase_33 AC 32 ms
51,712 KB
testcase_34 AC 37 ms
59,520 KB
testcase_35 AC 37 ms
59,392 KB
testcase_36 AC 33 ms
52,096 KB
testcase_37 AC 31 ms
52,096 KB
testcase_38 AC 46 ms
65,664 KB
testcase_39 AC 534 ms
76,672 KB
testcase_40 AC 100 ms
76,416 KB
testcase_41 AC 361 ms
77,184 KB
testcase_42 AC 80 ms
76,800 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)):
                break
        else:
            ans=""
            for a in range(26):
                ans+=chr(a+97)*cnt[a]
            print(ans)
            exit()
print(-1)
0