結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 165 ms
12,260 KB
testcase_09 AC 166 ms
13,424 KB
testcase_10 AC 168 ms
12,392 KB
testcase_11 AC 167 ms
13,288 KB
testcase_12 AC 164 ms
12,264 KB
testcase_13 AC 170 ms
13,284 KB
testcase_14 AC 156 ms
12,140 KB
testcase_15 AC 164 ms
12,144 KB
testcase_16 AC 160 ms
12,128 KB
testcase_17 AC 164 ms
12,136 KB
testcase_18 AC 176 ms
13,252 KB
testcase_19 AC 173 ms
13,256 KB
testcase_20 AC 175 ms
13,384 KB
testcase_21 AC 175 ms
13,256 KB
testcase_22 AC 175 ms
13,256 KB
testcase_23 AC 177 ms
13,380 KB
testcase_24 AC 176 ms
13,256 KB
testcase_25 AC 174 ms
13,508 KB
testcase_26 AC 174 ms
13,424 KB
testcase_27 AC 171 ms
13,384 KB
testcase_28 AC 168 ms
10,880 KB
testcase_29 AC 167 ms
10,752 KB
testcase_30 AC 169 ms
10,880 KB
testcase_31 AC 168 ms
10,752 KB
testcase_32 AC 166 ms
10,880 KB
testcase_33 AC 28 ms
10,624 KB
testcase_34 AC 31 ms
10,624 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 30 ms
10,624 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 36 ms
10,624 KB
testcase_39 AC 124 ms
11,008 KB
testcase_40 AC 120 ms
11,008 KB
testcase_41 AC 169 ms
11,776 KB
testcase_42 AC 164 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):
		S="".join(chr(j+97)*(H[j]+(i==j))for j in R(26))
		if S in D:D[S]+=1
		else:D[S]=1
for S in D:
	if D[S]<2:exit(print(S))
print(-1)
0