結果

問題 No.2715 Unique Chimatagram
ユーザー vwxyzvwxyz
提出日時 2024-06-02 11:34:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 604 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 17,948 KB
最終ジャッジ日時 2024-06-02 11:34:29
合計ジャッジ時間 15,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,256 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 1,188 ms
11,136 KB
testcase_09 AC 1,319 ms
11,136 KB
testcase_10 AC 146 ms
11,008 KB
testcase_11 AC 252 ms
11,136 KB
testcase_12 TLE -
testcase_13 AC 535 ms
11,136 KB
testcase_14 AC 381 ms
11,136 KB
testcase_15 AC 70 ms
11,136 KB
testcase_16 AC 334 ms
11,136 KB
testcase_17 AC 123 ms
11,136 KB
testcase_18 AC 33 ms
11,264 KB
testcase_19 AC 33 ms
11,264 KB
testcase_20 AC 31 ms
11,264 KB
testcase_21 AC 33 ms
11,264 KB
testcase_22 AC 31 ms
11,264 KB
testcase_23 AC 32 ms
11,264 KB
testcase_24 AC 31 ms
11,264 KB
testcase_25 AC 32 ms
11,264 KB
testcase_26 AC 32 ms
11,136 KB
testcase_27 AC 32 ms
11,136 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 27 ms
10,880 KB
testcase_34 AC 25 ms
10,624 KB
testcase_35 AC 26 ms
10,752 KB
testcase_36 AC 24 ms
10,752 KB
testcase_37 AC 25 ms
10,624 KB
testcase_38 AC 34 ms
10,752 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

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 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