結果

問題 No.2715 Unique Chimatagram
ユーザー rlangevinrlangevin
提出日時 2024-04-05 22:19:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-10-01 02:33:24
合計ジャッジ時間 13,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,692 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 40 ms
53,760 KB
testcase_04 AC 42 ms
54,400 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 44 ms
53,888 KB
testcase_08 AC 1,074 ms
79,524 KB
testcase_09 AC 1,838 ms
80,256 KB
testcase_10 AC 304 ms
78,848 KB
testcase_11 AC 352 ms
78,892 KB
testcase_12 WA -
testcase_13 AC 995 ms
79,360 KB
testcase_14 AC 573 ms
78,720 KB
testcase_15 AC 191 ms
78,228 KB
testcase_16 AC 399 ms
78,336 KB
testcase_17 AC 278 ms
78,464 KB
testcase_18 AC 77 ms
72,448 KB
testcase_19 AC 74 ms
72,704 KB
testcase_20 AC 75 ms
73,004 KB
testcase_21 AC 75 ms
72,576 KB
testcase_22 AC 75 ms
72,320 KB
testcase_23 AC 75 ms
72,320 KB
testcase_24 AC 74 ms
72,320 KB
testcase_25 AC 76 ms
72,448 KB
testcase_26 AC 77 ms
72,704 KB
testcase_27 AC 77 ms
72,960 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 40 ms
53,760 KB
testcase_34 AC 39 ms
53,888 KB
testcase_35 AC 40 ms
54,272 KB
testcase_36 AC 41 ms
53,760 KB
testcase_37 AC 39 ms
54,272 KB
testcase_38 AC 46 ms
54,912 KB
testcase_39 AC 158 ms
78,192 KB
testcase_40 AC 91 ms
76,800 KB
testcase_41 AC 189 ms
77,788 KB
testcase_42 AC 80 ms
74,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
S = [None] * N
for i in range(N):
    S[i] = Counter(input())
    
def check(a, b):
    for k, v in S[b].items():
        if S[a][k] < v:
            return 0
    return 1
    
for i in range(N):
    flag = 1
    for j in range(N):
        if i == j:
            continue
        if S[i] == S[j]:
            flag = 0
            break
    if not flag:
        continue
    
    for k in range(26):
        temp = 0
        S[i][chr(ord("a") + k)] += 1
        for j in range(N):
            if check(i, j):
                temp += 1
        if temp == 1:
            ans = ""
            for k, v in S[i].items():
                ans += k * v
            print(ans)
            exit()
        S[i][chr(ord("a") + k)] -= 1
        
print(-1)
0