結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 p-adicp-adic
提出日時 2024-02-08 10:58:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 84,028 KB
最終ジャッジ日時 2024-09-28 12:50:58
合計ジャッジ時間 12,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,080 KB
testcase_01 AC 46 ms
60,928 KB
testcase_02 AC 51 ms
63,872 KB
testcase_03 AC 55 ms
67,072 KB
testcase_04 AC 59 ms
68,096 KB
testcase_05 AC 54 ms
66,944 KB
testcase_06 AC 54 ms
68,352 KB
testcase_07 AC 56 ms
65,152 KB
testcase_08 AC 334 ms
82,336 KB
testcase_09 AC 342 ms
82,088 KB
testcase_10 AC 344 ms
82,432 KB
testcase_11 AC 351 ms
82,944 KB
testcase_12 AC 338 ms
82,304 KB
testcase_13 AC 351 ms
82,304 KB
testcase_14 AC 328 ms
82,432 KB
testcase_15 AC 341 ms
82,524 KB
testcase_16 AC 335 ms
82,176 KB
testcase_17 AC 338 ms
82,176 KB
testcase_18 AC 343 ms
83,840 KB
testcase_19 AC 344 ms
84,028 KB
testcase_20 AC 345 ms
83,712 KB
testcase_21 AC 342 ms
83,632 KB
testcase_22 AC 343 ms
83,632 KB
testcase_23 AC 342 ms
83,840 KB
testcase_24 AC 352 ms
83,840 KB
testcase_25 AC 344 ms
83,720 KB
testcase_26 AC 348 ms
83,712 KB
testcase_27 AC 349 ms
84,012 KB
testcase_28 AC 337 ms
77,184 KB
testcase_29 AC 334 ms
77,440 KB
testcase_30 AC 333 ms
77,308 KB
testcase_31 AC 336 ms
77,312 KB
testcase_32 AC 339 ms
77,544 KB
testcase_33 AC 39 ms
52,480 KB
testcase_34 AC 46 ms
61,184 KB
testcase_35 AC 47 ms
61,568 KB
testcase_36 AC 47 ms
61,824 KB
testcase_37 AC 51 ms
64,384 KB
testcase_38 AC 85 ms
76,424 KB
testcase_39 AC 275 ms
77,184 KB
testcase_40 AC 263 ms
77,824 KB
testcase_41 AC 349 ms
80,256 KB
testcase_42 AC 324 ms
76,672 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