結果

問題 No.2715 Unique Chimatagram
ユーザー hato336hato336
提出日時 2024-04-05 21:30:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 841 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,620 KB
最終ジャッジ日時 2024-10-01 01:43:42
合計ジャッジ時間 18,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
92,804 KB
testcase_01 AC 133 ms
85,956 KB
testcase_02 AC 148 ms
89,440 KB
testcase_03 AC 143 ms
89,508 KB
testcase_04 AC 136 ms
89,320 KB
testcase_05 AC 135 ms
89,352 KB
testcase_06 AC 131 ms
89,436 KB
testcase_07 AC 125 ms
85,988 KB
testcase_08 AC 178 ms
97,708 KB
testcase_09 AC 188 ms
97,624 KB
testcase_10 AC 173 ms
97,632 KB
testcase_11 AC 179 ms
97,376 KB
testcase_12 AC 178 ms
97,588 KB
testcase_13 AC 172 ms
97,496 KB
testcase_14 AC 180 ms
97,576 KB
testcase_15 AC 184 ms
97,672 KB
testcase_16 AC 179 ms
97,528 KB
testcase_17 AC 190 ms
97,696 KB
testcase_18 AC 189 ms
98,224 KB
testcase_19 AC 190 ms
98,056 KB
testcase_20 AC 182 ms
98,192 KB
testcase_21 AC 171 ms
98,120 KB
testcase_22 AC 179 ms
98,060 KB
testcase_23 AC 183 ms
97,992 KB
testcase_24 AC 174 ms
98,348 KB
testcase_25 AC 174 ms
98,076 KB
testcase_26 AC 182 ms
98,228 KB
testcase_27 AC 175 ms
98,128 KB
testcase_28 AC 993 ms
98,496 KB
testcase_29 AC 368 ms
98,524 KB
testcase_30 AC 703 ms
98,940 KB
testcase_31 AC 241 ms
98,460 KB
testcase_32 TLE -
testcase_33 AC 122 ms
85,916 KB
testcase_34 AC 126 ms
86,028 KB
testcase_35 AC 126 ms
85,840 KB
testcase_36 AC 123 ms
85,944 KB
testcase_37 AC 126 ms
85,948 KB
testcase_38 AC 146 ms
90,144 KB
testcase_39 TLE -
testcase_40 AC 346 ms
95,688 KB
testcase_41 TLE -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
n = int(input())
se = [set() for i in range(n)]
for i in range(n):
    check = [0 for j in range(26)]
    s = input().rstrip()
    for j in s:
        check[ord(j) - ord('a')] += 1
    for j in range(26):
        check[j] += 1
        se[i].add(tuple(check))
        check[j] -= 1

for i in range(n):
    for j in se[i]:
        cnt = 0
        for k in range(n):
            if k == i:
                continue
            if j in se[k]:
                cnt += 1
        if cnt == 0:
            for k in range(26):
                for l in range(j[k]):
                    print(chr(ord('a') + k),end='')
            print()
            exit()
print(-1)
0