結果

問題 No.2715 Unique Chimatagram
ユーザー titiatitia
提出日時 2024-04-05 22:18:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 877 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 84,184 KB
最終ジャッジ日時 2024-10-01 02:32:34
合計ジャッジ時間 9,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,548 KB
testcase_01 AC 43 ms
55,040 KB
testcase_02 AC 51 ms
63,324 KB
testcase_03 AC 41 ms
54,372 KB
testcase_04 AC 43 ms
54,068 KB
testcase_05 AC 41 ms
54,924 KB
testcase_06 AC 39 ms
55,020 KB
testcase_07 AC 39 ms
54,976 KB
testcase_08 AC 77 ms
77,112 KB
testcase_09 AC 93 ms
77,368 KB
testcase_10 AC 80 ms
76,984 KB
testcase_11 AC 86 ms
77,560 KB
testcase_12 AC 83 ms
77,004 KB
testcase_13 AC 89 ms
76,980 KB
testcase_14 AC 110 ms
77,132 KB
testcase_15 AC 93 ms
77,116 KB
testcase_16 AC 78 ms
77,068 KB
testcase_17 AC 77 ms
76,952 KB
testcase_18 AC 84 ms
77,476 KB
testcase_19 AC 81 ms
77,616 KB
testcase_20 AC 85 ms
77,528 KB
testcase_21 AC 83 ms
77,576 KB
testcase_22 AC 84 ms
77,576 KB
testcase_23 AC 85 ms
77,880 KB
testcase_24 AC 86 ms
77,496 KB
testcase_25 AC 83 ms
77,896 KB
testcase_26 AC 81 ms
77,524 KB
testcase_27 AC 85 ms
77,548 KB
testcase_28 AC 413 ms
77,820 KB
testcase_29 AC 195 ms
77,896 KB
testcase_30 AC 284 ms
77,600 KB
testcase_31 AC 107 ms
77,500 KB
testcase_32 AC 888 ms
77,748 KB
testcase_33 AC 41 ms
54,104 KB
testcase_34 AC 39 ms
54,364 KB
testcase_35 AC 39 ms
55,548 KB
testcase_36 AC 39 ms
54,772 KB
testcase_37 AC 41 ms
53,988 KB
testcase_38 AC 67 ms
71,664 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import Counter

n=int(input())
S=[sorted(input().strip()) for i in range(n)]
CS=[]
for i in range(n):
    CS.append(Counter(S[i]))

for i in range(n):
    if i+1<n and S[i]==S[i+1]:
        continue
    if i-1>=0 and S[i]==S[i-1]:
        continue

    for x in "abcdefghijklmnopqrstuvwxyz":
        T=S[i]+[x]
        C=Counter(T)
        flag=1

        for j in range(n):
            if i==j:
                continue

            count=0
            fflag=1

            for y in "abcdefghijklmnopqrstuvwxyz":
                if C[y]<CS[j][y]:
                    fflag=0
                else:
                    count+=C[y]-CS[j][y]

            if fflag==1 and count==1:
                flag=0
                break

        if flag==1:
            print("".join(T))
            exit()
        
        
print(-1)
0