結果

問題 No.2715 Unique Chimatagram
ユーザー ShirotsumeShirotsume
提出日時 2024-04-05 21:43:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 91,352 KB
最終ジャッジ日時 2024-10-01 01:58:59
合計ジャッジ時間 13,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
72,864 KB
testcase_01 AC 57 ms
66,832 KB
testcase_02 AC 59 ms
65,688 KB
testcase_03 AC 57 ms
66,640 KB
testcase_04 AC 59 ms
66,064 KB
testcase_05 AC 58 ms
66,828 KB
testcase_06 AC 56 ms
66,568 KB
testcase_07 AC 58 ms
65,840 KB
testcase_08 AC 142 ms
82,664 KB
testcase_09 AC 138 ms
82,832 KB
testcase_10 AC 139 ms
82,840 KB
testcase_11 AC 141 ms
83,040 KB
testcase_12 AC 139 ms
82,652 KB
testcase_13 AC 142 ms
82,716 KB
testcase_14 AC 133 ms
82,572 KB
testcase_15 AC 141 ms
82,604 KB
testcase_16 AC 135 ms
82,636 KB
testcase_17 AC 140 ms
82,656 KB
testcase_18 AC 151 ms
84,480 KB
testcase_19 AC 148 ms
84,144 KB
testcase_20 AC 150 ms
84,256 KB
testcase_21 AC 147 ms
83,848 KB
testcase_22 AC 146 ms
84,004 KB
testcase_23 AC 147 ms
84,064 KB
testcase_24 AC 141 ms
83,928 KB
testcase_25 AC 148 ms
84,468 KB
testcase_26 AC 141 ms
84,172 KB
testcase_27 AC 146 ms
84,392 KB
testcase_28 AC 155 ms
83,136 KB
testcase_29 AC 157 ms
82,708 KB
testcase_30 AC 156 ms
83,264 KB
testcase_31 AC 162 ms
82,760 KB
testcase_32 AC 160 ms
83,180 KB
testcase_33 AC 57 ms
65,624 KB
testcase_34 AC 61 ms
66,568 KB
testcase_35 AC 59 ms
66,372 KB
testcase_36 AC 56 ms
66,964 KB
testcase_37 AC 62 ms
65,960 KB
testcase_38 WA -
testcase_39 AC 806 ms
81,028 KB
testcase_40 WA -
testcase_41 AC 1,967 ms
83,848 KB
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353
import string
n = ii()
s = [sorted(input()) for _ in range(n)]
ts = []
for v in s:
    for x in string.ascii_lowercase:
        ts.append(sorted(v + [x]))
ts.sort()
for v in ts:
    # v から1文字抜いたものがsに含まれているか
    cnt = 0
    for i in range(len(v)):
        cnt += s.count(sorted(v[:i] + v[i+1:]))
        if cnt > 1:
            break
    if cnt == 1:
        print(''.join(v))
        exit()
print(-1)
0