結果

問題 No.2715 Unique Chimatagram
ユーザー akasia_midoriakasia_midori
提出日時 2024-04-06 03:19:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 1,076 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-10-01 03:31:42
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 43 ms
54,016 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 69 ms
67,840 KB
testcase_09 AC 70 ms
68,480 KB
testcase_10 AC 72 ms
67,968 KB
testcase_11 AC 71 ms
68,224 KB
testcase_12 AC 94 ms
72,320 KB
testcase_13 AC 71 ms
68,608 KB
testcase_14 AC 68 ms
67,968 KB
testcase_15 AC 72 ms
68,352 KB
testcase_16 AC 70 ms
67,968 KB
testcase_17 AC 72 ms
68,096 KB
testcase_18 AC 84 ms
75,008 KB
testcase_19 AC 85 ms
74,880 KB
testcase_20 AC 84 ms
74,740 KB
testcase_21 AC 85 ms
74,804 KB
testcase_22 AC 86 ms
74,752 KB
testcase_23 AC 83 ms
75,060 KB
testcase_24 AC 84 ms
74,992 KB
testcase_25 AC 85 ms
75,008 KB
testcase_26 AC 85 ms
74,828 KB
testcase_27 AC 91 ms
75,008 KB
testcase_28 AC 79 ms
72,448 KB
testcase_29 AC 75 ms
70,272 KB
testcase_30 AC 82 ms
74,112 KB
testcase_31 AC 73 ms
69,504 KB
testcase_32 AC 73 ms
69,248 KB
testcase_33 AC 43 ms
53,504 KB
testcase_34 AC 42 ms
53,888 KB
testcase_35 AC 48 ms
53,888 KB
testcase_36 AC 44 ms
53,760 KB
testcase_37 AC 47 ms
53,888 KB
testcase_38 AC 53 ms
62,848 KB
testcase_39 AC 88 ms
76,580 KB
testcase_40 AC 117 ms
76,928 KB
testcase_41 AC 124 ms
77,312 KB
testcase_42 AC 62 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def oi(): return int(input())
def os(): return input().rstrip()
def mi(): return list(map(int, input().split()))

# import sys
# input = sys.stdin.readline
# import sys
# sys.setrecursionlimit(10**8)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict
input_count = 0

N = oi()
dicts = {i:defaultdict(int) for i in range(1,12)}
for _ in range(N):
    S = "".join(sorted(list(os())))
    dicts[len(S)][S] += 1
alpha = [chr(ord("a")+i) for i in range(26)]
output = "-1"
flg = False
for i in range(1, 11):
    for k in dicts[i].keys():
        for a in alpha:
            temp = "".join(sorted(list(k+a)))
            count = 0
            sets = set([])
            for j in range(len(temp)):
                temp2 = temp[:j] + temp[j+1:]
                sets.add(temp2)
            for temp2 in sets:
                if temp2 in dicts[i]:
                    count += dicts[i][temp2]

            if count == 1:
                output = k+a
                flg = True
                break
    if flg:
        break
print(output)
0