結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
66,688 KB
testcase_01 AC 47 ms
61,696 KB
testcase_02 AC 124 ms
65,792 KB
testcase_03 AC 43 ms
55,552 KB
testcase_04 AC 42 ms
55,168 KB
testcase_05 AC 45 ms
55,424 KB
testcase_06 AC 43 ms
55,296 KB
testcase_07 AC 61 ms
67,328 KB
testcase_08 AC 49 ms
61,952 KB
testcase_09 AC 44 ms
55,424 KB
testcase_10 AC 50 ms
62,976 KB
testcase_11 AC 47 ms
54,656 KB
testcase_12 AC 47 ms
55,168 KB
testcase_13 AC 46 ms
55,296 KB
testcase_14 AC 47 ms
55,168 KB
testcase_15 AC 46 ms
55,168 KB
testcase_16 AC 46 ms
54,656 KB
testcase_17 AC 70 ms
68,096 KB
testcase_18 AC 54 ms
62,592 KB
testcase_19 AC 95 ms
66,432 KB
testcase_20 AC 104 ms
68,608 KB
testcase_21 AC 55 ms
64,128 KB
testcase_22 AC 59 ms
65,664 KB
testcase_23 AC 62 ms
65,408 KB
testcase_24 AC 109 ms
69,504 KB
testcase_25 AC 93 ms
69,120 KB
testcase_26 AC 65 ms
65,664 KB
testcase_27 AC 69 ms
65,664 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