結果

問題 No.2715 Unique Chimatagram
ユーザー titiatitia
提出日時 2024-04-05 22:19:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 880 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 77,780 KB
最終ジャッジ日時 2024-10-01 02:33:08
合計ジャッジ時間 6,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,308 KB
testcase_01 AC 42 ms
53,932 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 43 ms
54,304 KB
testcase_05 AC 43 ms
54,652 KB
testcase_06 AC 43 ms
54,628 KB
testcase_07 AC 42 ms
55,000 KB
testcase_08 AC 71 ms
70,264 KB
testcase_09 WA -
testcase_10 AC 66 ms
67,452 KB
testcase_11 AC 69 ms
68,860 KB
testcase_12 AC 67 ms
70,044 KB
testcase_13 AC 62 ms
69,776 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 62 ms
67,520 KB
testcase_17 AC 63 ms
68,936 KB
testcase_18 AC 65 ms
70,224 KB
testcase_19 AC 66 ms
69,488 KB
testcase_20 AC 65 ms
69,516 KB
testcase_21 AC 66 ms
69,164 KB
testcase_22 AC 62 ms
68,904 KB
testcase_23 AC 64 ms
70,828 KB
testcase_24 AC 61 ms
69,768 KB
testcase_25 AC 63 ms
69,152 KB
testcase_26 AC 62 ms
69,592 KB
testcase_27 AC 61 ms
69,704 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 43 ms
54,772 KB
testcase_34 AC 40 ms
55,372 KB
testcase_35 AC 39 ms
54,368 KB
testcase_36 AC 40 ms
54,500 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 62 ms
69,900 KB
testcase_42 AC 63 ms
68,900 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

            count=0
            fflag=1

            for y in CS[j]:
                if C[y]<CS[j][y]:
                    fflag=0
                    break
                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