結果

問題 No.2715 Unique Chimatagram
ユーザー 👑 p-adicp-adic
提出日時 2024-02-08 18:03:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 13,808 KB
最終ジャッジ日時 2024-09-28 12:51:17
合計ジャッジ時間 9,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 237 ms
12,120 KB
testcase_09 AC 245 ms
13,656 KB
testcase_10 AC 248 ms
12,124 KB
testcase_11 AC 255 ms
13,532 KB
testcase_12 AC 247 ms
12,124 KB
testcase_13 AC 257 ms
13,532 KB
testcase_14 AC 238 ms
12,124 KB
testcase_15 AC 250 ms
12,152 KB
testcase_16 AC 239 ms
12,380 KB
testcase_17 AC 249 ms
12,380 KB
testcase_18 AC 262 ms
13,684 KB
testcase_19 AC 264 ms
13,428 KB
testcase_20 AC 260 ms
13,548 KB
testcase_21 AC 264 ms
13,676 KB
testcase_22 AC 259 ms
13,552 KB
testcase_23 AC 257 ms
13,808 KB
testcase_24 AC 261 ms
13,676 KB
testcase_25 AC 264 ms
13,676 KB
testcase_26 AC 262 ms
13,808 KB
testcase_27 AC 261 ms
13,560 KB
testcase_28 AC 252 ms
10,624 KB
testcase_29 AC 251 ms
10,752 KB
testcase_30 AC 251 ms
10,752 KB
testcase_31 AC 251 ms
10,880 KB
testcase_32 AC 251 ms
10,880 KB
testcase_33 AC 29 ms
10,752 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 30 ms
10,624 KB
testcase_36 AC 29 ms
10,624 KB
testcase_37 AC 30 ms
10,752 KB
testcase_38 AC 39 ms
10,752 KB
testcase_39 AC 184 ms
11,136 KB
testcase_40 AC 174 ms
11,136 KB
testcase_41 AC 254 ms
12,160 KB
testcase_42 AC 250 ms
10,624 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
print(" ","\n","\r","\r\n")
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(" ","\n","\r","\r\n",a," ","\n","\r","\r\n",))
print(" ","\n","\r","\r\n",-1," ","\n","\r","\r\n")
0