結果

問題 No.2178 Payable Magic Items
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-17 18:37:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 4,000 ms
コード長 233 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-11-17 18:37:59
合計ジャッジ時間 6,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 164 ms
78,336 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 159 ms
78,464 KB
testcase_06 AC 160 ms
78,592 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 193 ms
78,612 KB
testcase_09 AC 69 ms
70,144 KB
testcase_10 AC 47 ms
59,136 KB
testcase_11 AC 280 ms
80,768 KB
testcase_12 AC 274 ms
80,844 KB
testcase_13 AC 275 ms
80,512 KB
testcase_14 AC 303 ms
80,896 KB
testcase_15 AC 275 ms
80,640 KB
testcase_16 AC 273 ms
80,840 KB
testcase_17 AC 211 ms
80,000 KB
testcase_18 AC 74 ms
71,040 KB
testcase_19 AC 117 ms
77,684 KB
testcase_20 AC 52 ms
60,288 KB
testcase_21 AC 82 ms
70,144 KB
testcase_22 AC 75 ms
71,424 KB
testcase_23 AC 53 ms
61,568 KB
testcase_24 AC 246 ms
80,616 KB
testcase_25 AC 194 ms
79,360 KB
testcase_26 AC 123 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,K=map(int,input().split())
a=[int(input(),5) for i in range(n)]
q=[0]*(5**K)
for v in a:
  q[v]=1
for j in range(K):
  for i in reversed(range(5**K)):
    if (i//(5**j))%5>0:
      q[i-(5**j)]+=q[i]
print(n-sum(q[v]==1 for v in a))
0