結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 p-adicp-adic
提出日時 2024-02-08 10:58:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 83,528 KB
最終ジャッジ日時 2024-02-08 20:52:42
合計ジャッジ時間 11,128 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,836 KB
testcase_01 AC 44 ms
61,836 KB
testcase_02 AC 48 ms
64,036 KB
testcase_03 AC 50 ms
68,148 KB
testcase_04 AC 51 ms
68,148 KB
testcase_05 AC 53 ms
68,148 KB
testcase_06 AC 51 ms
68,148 KB
testcase_07 AC 47 ms
66,100 KB
testcase_08 AC 295 ms
82,248 KB
testcase_09 AC 305 ms
81,992 KB
testcase_10 AC 305 ms
82,120 KB
testcase_11 AC 307 ms
82,632 KB
testcase_12 AC 303 ms
81,992 KB
testcase_13 AC 310 ms
81,992 KB
testcase_14 AC 292 ms
82,248 KB
testcase_15 AC 302 ms
82,248 KB
testcase_16 AC 300 ms
81,864 KB
testcase_17 AC 307 ms
81,992 KB
testcase_18 AC 310 ms
83,528 KB
testcase_19 AC 324 ms
83,528 KB
testcase_20 AC 319 ms
83,528 KB
testcase_21 AC 313 ms
83,528 KB
testcase_22 AC 313 ms
83,528 KB
testcase_23 AC 313 ms
83,528 KB
testcase_24 AC 314 ms
83,528 KB
testcase_25 AC 312 ms
83,528 KB
testcase_26 AC 312 ms
83,528 KB
testcase_27 AC 307 ms
83,528 KB
testcase_28 AC 305 ms
77,000 KB
testcase_29 AC 306 ms
76,744 KB
testcase_30 AC 305 ms
76,744 KB
testcase_31 AC 306 ms
76,744 KB
testcase_32 AC 310 ms
77,128 KB
testcase_33 AC 36 ms
53,460 KB
testcase_34 AC 42 ms
61,836 KB
testcase_35 AC 43 ms
61,836 KB
testcase_36 AC 43 ms
61,836 KB
testcase_37 AC 46 ms
64,036 KB
testcase_38 AC 78 ms
75,848 KB
testcase_39 AC 248 ms
77,000 KB
testcase_40 AC 233 ms
77,256 KB
testcase_41 AC 312 ms
80,072 KB
testcase_42 AC 301 ms
76,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
D={}
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))*11**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//(11**i)%11):a+=chr(i+97)
		exit(print(a))
print(-1)
0