結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 234 ms
12,224 KB
testcase_09 AC 248 ms
13,760 KB
testcase_10 AC 245 ms
12,352 KB
testcase_11 AC 254 ms
13,500 KB
testcase_12 AC 245 ms
12,360 KB
testcase_13 AC 251 ms
13,500 KB
testcase_14 AC 235 ms
12,224 KB
testcase_15 AC 243 ms
12,348 KB
testcase_16 AC 240 ms
12,344 KB
testcase_17 AC 244 ms
12,352 KB
testcase_18 AC 263 ms
13,776 KB
testcase_19 AC 265 ms
13,652 KB
testcase_20 AC 260 ms
13,780 KB
testcase_21 AC 260 ms
13,776 KB
testcase_22 AC 261 ms
13,900 KB
testcase_23 AC 262 ms
13,908 KB
testcase_24 AC 257 ms
13,776 KB
testcase_25 AC 265 ms
13,644 KB
testcase_26 AC 259 ms
13,648 KB
testcase_27 AC 260 ms
13,652 KB
testcase_28 AC 252 ms
10,880 KB
testcase_29 AC 252 ms
11,008 KB
testcase_30 AC 250 ms
11,008 KB
testcase_31 AC 251 ms
10,880 KB
testcase_32 AC 253 ms
11,008 KB
testcase_33 AC 29 ms
10,880 KB
testcase_34 AC 28 ms
10,880 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 31 ms
10,880 KB
testcase_38 AC 41 ms
10,752 KB
testcase_39 AC 186 ms
11,136 KB
testcase_40 AC 174 ms
11,136 KB
testcase_41 AC 257 ms
11,904 KB
testcase_42 AC 254 ms
10,880 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