結果

問題 No.247 線形計画問題もどき
ユーザー convexineqconvexineq
提出日時 2020-12-31 18:17:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 61,524 KB
最終ジャッジ日時 2024-10-09 17:26:53
合計ジャッジ時間 2,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,092 KB
testcase_01 AC 40 ms
58,236 KB
testcase_02 AC 101 ms
60,344 KB
testcase_03 AC 37 ms
53,536 KB
testcase_04 AC 38 ms
52,328 KB
testcase_05 AC 36 ms
52,576 KB
testcase_06 AC 36 ms
52,492 KB
testcase_07 AC 41 ms
59,528 KB
testcase_08 AC 41 ms
59,356 KB
testcase_09 AC 37 ms
52,312 KB
testcase_10 AC 39 ms
54,080 KB
testcase_11 AC 38 ms
51,748 KB
testcase_12 AC 38 ms
53,528 KB
testcase_13 AC 38 ms
52,700 KB
testcase_14 AC 38 ms
53,252 KB
testcase_15 AC 37 ms
53,352 KB
testcase_16 AC 37 ms
53,148 KB
testcase_17 AC 46 ms
59,688 KB
testcase_18 AC 43 ms
60,260 KB
testcase_19 AC 49 ms
61,524 KB
testcase_20 AC 64 ms
61,472 KB
testcase_21 AC 40 ms
59,072 KB
testcase_22 AC 42 ms
59,196 KB
testcase_23 AC 41 ms
58,972 KB
testcase_24 AC 65 ms
60,376 KB
testcase_25 AC 57 ms
60,956 KB
testcase_26 AC 43 ms
58,944 KB
testcase_27 AC 42 ms
59,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W,n,*a = map(int,open(0).read().split())
INF = 1<<60
dp = [0]+[INF]*W
for vi,wi in zip([1]*n,a):
    for x in range(wi,W+1):
        dp[x] = min(dp[x],dp[x-wi]+1)
print(dp[W] if dp[W] != INF else -1)
0