結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 p-adicp-adic
提出日時 2024-02-07 23:33:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 84,980 KB
最終ジャッジ日時 2024-09-28 12:49:54
合計ジャッジ時間 21,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
66,056 KB
testcase_01 AC 46 ms
64,152 KB
testcase_02 AC 53 ms
70,028 KB
testcase_03 AC 61 ms
75,628 KB
testcase_04 AC 62 ms
75,344 KB
testcase_05 AC 59 ms
75,424 KB
testcase_06 AC 59 ms
75,424 KB
testcase_07 AC 51 ms
71,312 KB
testcase_08 AC 628 ms
83,256 KB
testcase_09 AC 654 ms
83,012 KB
testcase_10 AC 648 ms
82,908 KB
testcase_11 AC 645 ms
83,736 KB
testcase_12 AC 627 ms
83,116 KB
testcase_13 AC 653 ms
83,364 KB
testcase_14 AC 611 ms
82,968 KB
testcase_15 AC 645 ms
83,152 KB
testcase_16 AC 622 ms
82,772 KB
testcase_17 AC 637 ms
83,180 KB
testcase_18 AC 664 ms
84,892 KB
testcase_19 AC 658 ms
84,552 KB
testcase_20 AC 643 ms
84,980 KB
testcase_21 AC 637 ms
84,772 KB
testcase_22 AC 650 ms
84,692 KB
testcase_23 AC 654 ms
84,432 KB
testcase_24 AC 655 ms
84,436 KB
testcase_25 AC 646 ms
84,652 KB
testcase_26 AC 637 ms
84,936 KB
testcase_27 AC 643 ms
84,544 KB
testcase_28 AC 640 ms
77,620 KB
testcase_29 AC 632 ms
77,284 KB
testcase_30 AC 643 ms
77,412 KB
testcase_31 AC 655 ms
77,388 KB
testcase_32 AC 657 ms
77,476 KB
testcase_33 AC 36 ms
55,356 KB
testcase_34 AC 45 ms
64,188 KB
testcase_35 AC 49 ms
66,880 KB
testcase_36 AC 48 ms
66,864 KB
testcase_37 AC 50 ms
70,336 KB
testcase_38 AC 95 ms
76,452 KB
testcase_39 AC 532 ms
78,212 KB
testcase_40 AC 500 ms
77,464 KB
testcase_41 AC 661 ms
80,640 KB
testcase_42 AC 641 ms
76,808 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