結果

問題 No.2715 Unique Chimatagram
ユーザー ShirotsumeShirotsume
提出日時 2024-04-05 21:35:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 77,656 KB
最終ジャッジ日時 2024-10-01 01:48:36
合計ジャッジ時間 5,990 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
66,176 KB
testcase_01 AC 64 ms
65,908 KB
testcase_02 AC 66 ms
65,688 KB
testcase_03 AC 63 ms
66,472 KB
testcase_04 AC 65 ms
65,460 KB
testcase_05 AC 66 ms
65,860 KB
testcase_06 AC 63 ms
66,116 KB
testcase_07 AC 65 ms
65,552 KB
testcase_08 AC 68 ms
67,676 KB
testcase_09 WA -
testcase_10 AC 71 ms
67,288 KB
testcase_11 AC 68 ms
67,404 KB
testcase_12 AC 69 ms
67,672 KB
testcase_13 AC 73 ms
67,820 KB
testcase_14 AC 65 ms
67,732 KB
testcase_15 AC 72 ms
68,580 KB
testcase_16 AC 69 ms
69,228 KB
testcase_17 AC 67 ms
69,012 KB
testcase_18 AC 70 ms
68,428 KB
testcase_19 AC 71 ms
69,176 KB
testcase_20 AC 68 ms
68,436 KB
testcase_21 AC 68 ms
68,140 KB
testcase_22 AC 67 ms
68,124 KB
testcase_23 AC 68 ms
67,852 KB
testcase_24 AC 72 ms
68,824 KB
testcase_25 AC 73 ms
68,152 KB
testcase_26 AC 66 ms
68,760 KB
testcase_27 AC 69 ms
68,332 KB
testcase_28 AC 75 ms
72,748 KB
testcase_29 AC 74 ms
69,232 KB
testcase_30 AC 77 ms
70,864 KB
testcase_31 AC 70 ms
69,576 KB
testcase_32 AC 96 ms
77,656 KB
testcase_33 AC 65 ms
67,536 KB
testcase_34 AC 67 ms
66,800 KB
testcase_35 AC 69 ms
65,436 KB
testcase_36 WA -
testcase_37 AC 66 ms
66,516 KB
testcase_38 WA -
testcase_39 AC 112 ms
77,300 KB
testcase_40 AC 72 ms
69,860 KB
testcase_41 AC 102 ms
77,436 KB
testcase_42 AC 380 ms
77,584 KB
権限があれば一括ダウンロードができます

ソースコード

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)]

for v in s:
    if s.count(v) == 1:
        for x in string.ascii_lowercase:
            if sorted(''.join(v) + x)[:-1] not in s:
                print(''.join(v) + x)
                exit()
print(-1)
0