結果

問題 No.2715 Unique Chimatagram
ユーザー titiatitia
提出日時 2024-04-05 22:03:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 79,148 KB
最終ジャッジ日時 2024-10-01 02:19:12
合計ジャッジ時間 7,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 39 ms
54,144 KB
testcase_02 AC 40 ms
54,528 KB
testcase_03 AC 40 ms
54,016 KB
testcase_04 AC 42 ms
55,040 KB
testcase_05 AC 42 ms
54,268 KB
testcase_06 AC 41 ms
53,888 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 302 ms
78,676 KB
testcase_09 AC 312 ms
78,688 KB
testcase_10 AC 137 ms
78,208 KB
testcase_11 AC 159 ms
78,992 KB
testcase_12 WA -
testcase_13 AC 202 ms
78,720 KB
testcase_14 AC 181 ms
78,920 KB
testcase_15 AC 114 ms
78,464 KB
testcase_16 AC 153 ms
77,856 KB
testcase_17 AC 125 ms
78,944 KB
testcase_18 AC 72 ms
73,472 KB
testcase_19 AC 72 ms
73,344 KB
testcase_20 AC 71 ms
73,728 KB
testcase_21 AC 69 ms
73,216 KB
testcase_22 AC 69 ms
72,832 KB
testcase_23 AC 71 ms
73,088 KB
testcase_24 AC 71 ms
72,832 KB
testcase_25 AC 70 ms
73,472 KB
testcase_26 AC 72 ms
73,216 KB
testcase_27 AC 72 ms
73,088 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 41 ms
53,632 KB
testcase_34 AC 39 ms
53,632 KB
testcase_35 AC 39 ms
54,272 KB
testcase_36 AC 39 ms
53,760 KB
testcase_37 AC 42 ms
53,504 KB
testcase_38 AC 62 ms
68,096 KB
testcase_39 AC 559 ms
77,556 KB
testcase_40 AC 126 ms
77,256 KB
testcase_41 AC 61 ms
67,840 KB
testcase_42 AC 58 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

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
            for s in Counter(CS[j]):
                if C[s]<CS[j][s]:
                    break
            else:
                flag=0
                break

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