結果

問題 No.2178 Payable Magic Items
ユーザー 👑 p-adicp-adic
提出日時 2023-05-29 21:44:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,841 ms / 4,000 ms
コード長 317 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-12-28 10:19:45
合計ジャッジ時間 24,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 1,650 ms
13,696 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 37 ms
13,824 KB
testcase_06 AC 98 ms
13,696 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 94 ms
13,696 KB
testcase_09 AC 69 ms
11,136 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 1,548 ms
21,376 KB
testcase_12 AC 2,419 ms
21,504 KB
testcase_13 AC 2,841 ms
21,504 KB
testcase_14 AC 2,451 ms
21,504 KB
testcase_15 AC 2,305 ms
21,504 KB
testcase_16 AC 2,281 ms
21,504 KB
testcase_17 AC 1,876 ms
16,256 KB
testcase_18 AC 47 ms
10,752 KB
testcase_19 AC 470 ms
13,056 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 41 ms
10,624 KB
testcase_22 AC 46 ms
10,752 KB
testcase_23 AC 36 ms
10,624 KB
testcase_24 AC 2,033 ms
19,072 KB
testcase_25 AC 1,728 ms
14,720 KB
testcase_26 AC 494 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