結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 p-adicp-adic
提出日時 2024-02-07 23:28:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-02-08 20:52:06
合計ジャッジ時間 10,526 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,112 KB
testcase_01 AC 27 ms
10,112 KB
testcase_02 AC 28 ms
10,112 KB
testcase_03 AC 30 ms
10,112 KB
testcase_04 AC 30 ms
10,112 KB
testcase_05 AC 30 ms
10,112 KB
testcase_06 AC 30 ms
10,112 KB
testcase_07 AC 28 ms
10,112 KB
testcase_08 AC 281 ms
11,868 KB
testcase_09 AC 295 ms
13,280 KB
testcase_10 AC 293 ms
11,996 KB
testcase_11 AC 299 ms
13,276 KB
testcase_12 AC 287 ms
11,996 KB
testcase_13 AC 297 ms
13,276 KB
testcase_14 AC 274 ms
11,872 KB
testcase_15 AC 289 ms
11,992 KB
testcase_16 AC 278 ms
11,868 KB
testcase_17 AC 287 ms
12,000 KB
testcase_18 AC 306 ms
13,308 KB
testcase_19 AC 307 ms
13,308 KB
testcase_20 AC 308 ms
13,308 KB
testcase_21 AC 309 ms
13,308 KB
testcase_22 AC 311 ms
13,304 KB
testcase_23 AC 308 ms
13,308 KB
testcase_24 AC 308 ms
13,304 KB
testcase_25 AC 309 ms
13,308 KB
testcase_26 AC 307 ms
13,312 KB
testcase_27 AC 306 ms
13,312 KB
testcase_28 AC 288 ms
10,240 KB
testcase_29 AC 290 ms
10,240 KB
testcase_30 AC 290 ms
10,240 KB
testcase_31 AC 291 ms
10,240 KB
testcase_32 AC 288 ms
10,240 KB
testcase_33 AC 28 ms
10,112 KB
testcase_34 AC 28 ms
10,112 KB
testcase_35 AC 29 ms
10,112 KB
testcase_36 AC 30 ms
10,112 KB
testcase_37 AC 29 ms
10,112 KB
testcase_38 AC 40 ms
10,112 KB
testcase_39 AC 215 ms
10,496 KB
testcase_40 AC 202 ms
10,496 KB
testcase_41 AC 302 ms
11,628 KB
testcase_42 AC 291 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
D={}
B=1001
for n in R(int(I())):
	H=[0]*26
	for s in I():H[ord(s)-97]+=1
	for i in R(26):
		h=sum((H[j]+(i==j))*B**j for j in R(26))
		if h in D:D[h]+=1
		else:D[h]=1
for h in D:
	if D[h]<2:
		a=""
		for i in R(26):
			for n in R(h//(B**i)%B):a+=chr(i+97)
		exit(print(a))
print(-1)
0