結果

問題 No.2715 Unique Chimatagram
ユーザー shobonvipshobonvip
提出日時 2024-04-06 09:20:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 88,212 KB
最終ジャッジ日時 2024-10-01 03:46:17
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,296 KB
testcase_01 AC 43 ms
59,920 KB
testcase_02 AC 43 ms
60,092 KB
testcase_03 AC 44 ms
61,576 KB
testcase_04 AC 43 ms
60,924 KB
testcase_05 AC 43 ms
61,040 KB
testcase_06 AC 45 ms
61,348 KB
testcase_07 AC 47 ms
60,412 KB
testcase_08 AC 103 ms
85,636 KB
testcase_09 AC 108 ms
85,744 KB
testcase_10 AC 105 ms
85,448 KB
testcase_11 AC 109 ms
86,480 KB
testcase_12 AC 107 ms
85,700 KB
testcase_13 AC 106 ms
85,532 KB
testcase_14 AC 103 ms
85,580 KB
testcase_15 AC 107 ms
85,572 KB
testcase_16 AC 109 ms
85,844 KB
testcase_17 AC 108 ms
85,640 KB
testcase_18 AC 106 ms
87,852 KB
testcase_19 AC 103 ms
88,160 KB
testcase_20 AC 109 ms
87,864 KB
testcase_21 AC 107 ms
87,788 KB
testcase_22 AC 106 ms
87,924 KB
testcase_23 AC 108 ms
88,056 KB
testcase_24 AC 109 ms
88,088 KB
testcase_25 AC 108 ms
88,212 KB
testcase_26 AC 108 ms
87,740 KB
testcase_27 AC 107 ms
87,896 KB
testcase_28 AC 103 ms
77,508 KB
testcase_29 AC 99 ms
77,640 KB
testcase_30 AC 101 ms
77,788 KB
testcase_31 AC 100 ms
77,552 KB
testcase_32 AC 107 ms
77,684 KB
testcase_33 AC 43 ms
59,384 KB
testcase_34 AC 46 ms
59,700 KB
testcase_35 AC 43 ms
60,236 KB
testcase_36 AC 44 ms
59,572 KB
testcase_37 AC 43 ms
59,980 KB
testcase_38 AC 55 ms
66,868 KB
testcase_39 AC 97 ms
77,664 KB
testcase_40 AC 94 ms
77,808 KB
testcase_41 AC 106 ms
81,596 KB
testcase_42 AC 97 ms
77,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())
a = [[0] * 26 for i in range(n)]
t = defaultdict(int)
for i in range(n):
	s = input()
	for j in s:
		a[i][ord(j) - ord('a')] += 1

for i in range(n):
	for j in range(26):
		b = list(a[i])
		b[j] += 1
		t[tuple(b)] += 1

for x,y in t.items():
	if y == 1:
		g = []
		for i in range(26):
			for j in range(x[i]):
				g.append(chr(ord('a')+i))
		print(''.join(g))
		break
else:
	print("-1")
0