結果

問題 No.2178 Payable Magic Items
ユーザー 👑 p-adicp-adic
提出日時 2023-05-29 21:44:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,256 ms / 4,000 ms
コード長 317 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-06-08 19:27:08
合計ジャッジ時間 22,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 1,595 ms
13,824 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 35 ms
13,696 KB
testcase_06 AC 99 ms
13,696 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 92 ms
13,696 KB
testcase_09 AC 65 ms
11,264 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 1,480 ms
21,376 KB
testcase_12 AC 2,183 ms
21,632 KB
testcase_13 AC 2,256 ms
21,632 KB
testcase_14 AC 2,193 ms
21,504 KB
testcase_15 AC 2,230 ms
21,504 KB
testcase_16 AC 2,166 ms
21,376 KB
testcase_17 AC 1,838 ms
16,384 KB
testcase_18 AC 43 ms
10,752 KB
testcase_19 AC 451 ms
13,184 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 42 ms
10,624 KB
testcase_22 AC 46 ms
10,752 KB
testcase_23 AC 33 ms
10,624 KB
testcase_24 AC 2,011 ms
19,200 KB
testcase_25 AC 1,711 ms
14,848 KB
testcase_26 AC 486 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
N,K=map(int,I().split())
p=[pow(5,i)for i in R(K+1)]
b=[0]*p[K]
S=[0]*N
for i in R(N):
	S[i]=int(I(),5)
	b[S[i]]=1
a=0
for i in R(N):
	L=[S[i]] if b[S[i]]<2 else []
	while len(L):
		s=L.pop()
		for j in R(K):
			t=s-p[j]
			if s%p[j+1]//p[j]*(b[t]<2):
				L.append(t)
				a,b[t]=a+(b[t]==1),2
print(a)
0