結果
問題 | No.1782 ManyCoins |
ユーザー | tktk_snsn |
提出日時 | 2021-12-11 15:48:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 76,800 KB |
最終ジャッジ日時 | 2024-07-19 20:57:29 |
合計ジャッジ時間 | 5,843 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 73 ms
75,008 KB |
testcase_01 | AC | 85 ms
75,776 KB |
testcase_02 | AC | 82 ms
76,160 KB |
testcase_03 | AC | 69 ms
75,392 KB |
testcase_04 | AC | 70 ms
75,392 KB |
testcase_05 | WA | - |
testcase_06 | AC | 72 ms
75,264 KB |
testcase_07 | AC | 68 ms
75,392 KB |
testcase_08 | AC | 68 ms
75,264 KB |
testcase_09 | AC | 76 ms
75,136 KB |
testcase_10 | AC | 74 ms
75,264 KB |
testcase_11 | AC | 78 ms
75,648 KB |
testcase_12 | AC | 78 ms
75,648 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 74 ms
75,776 KB |
testcase_48 | AC | 64 ms
74,496 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
ソースコード
"""Lの上位20bit, 下位20bitで分けて半分全列挙""" U = 1 << 20 N, L = map(int, input().split()) W = list(map(int, input().split())) dp = [0] * U dp[0] = 1 for w in W: for i in range(w, U): dp[i] |= dp[i-w] dp_sum = [0] * (U + 1) for i in range(1, U+1): dp_sum[i] = dp_sum[i-1] + dp[i-1] ans = 0 for i in range(U): if dp[i]: target = L - (i << 20) target = min(target, U) if target < 0: break ans += dp_sum[target] print(ans)