結果

問題 No.247 線形計画問題もどき
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-10 17:14:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 69,888 KB
最終ジャッジ日時 2024-05-05 04:16:09
合計ジャッジ時間 3,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
66,304 KB
testcase_01 AC 50 ms
61,824 KB
testcase_02 AC 131 ms
66,304 KB
testcase_03 AC 47 ms
55,168 KB
testcase_04 AC 47 ms
55,040 KB
testcase_05 AC 46 ms
55,424 KB
testcase_06 AC 45 ms
55,040 KB
testcase_07 AC 60 ms
67,584 KB
testcase_08 AC 52 ms
62,336 KB
testcase_09 AC 45 ms
55,552 KB
testcase_10 AC 54 ms
63,744 KB
testcase_11 AC 45 ms
55,168 KB
testcase_12 AC 45 ms
55,168 KB
testcase_13 AC 45 ms
54,912 KB
testcase_14 AC 47 ms
55,168 KB
testcase_15 AC 46 ms
55,552 KB
testcase_16 AC 44 ms
55,296 KB
testcase_17 AC 74 ms
67,712 KB
testcase_18 AC 60 ms
62,976 KB
testcase_19 AC 103 ms
66,944 KB
testcase_20 AC 108 ms
68,608 KB
testcase_21 AC 60 ms
64,768 KB
testcase_22 AC 64 ms
65,792 KB
testcase_23 AC 61 ms
65,792 KB
testcase_24 AC 108 ms
69,760 KB
testcase_25 AC 92 ms
69,888 KB
testcase_26 AC 65 ms
66,560 KB
testcase_27 AC 70 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import math,sys
input = sys.stdin.readline

C = int(input())
N = int(input())
A = list(map(int,input().split()))

INF = (1<<60)
dp = [INF]*(C+2)

dp[0] = 0
for a in A:
    
    for i in range(C):
        
        dp[min(C+1,i+a)] = min(dp[min(C+1,i+a)],dp[i]+1)
        
if dp[C]==INF:
    print(-1)
else:
    print(dp[C])
0