結果

問題 No.247 線形計画問題もどき
ユーザー tjaketjake
提出日時 2015-12-20 16:14:16
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 78,232 KB
最終ジャッジ日時 2024-07-07 11:12:10
合計ジャッジ時間 2,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
77,368 KB
testcase_01 AC 66 ms
76,328 KB
testcase_02 AC 99 ms
78,092 KB
testcase_03 AC 63 ms
75,688 KB
testcase_04 AC 63 ms
75,560 KB
testcase_05 AC 60 ms
75,896 KB
testcase_06 AC 62 ms
75,680 KB
testcase_07 AC 64 ms
78,076 KB
testcase_08 AC 69 ms
78,108 KB
testcase_09 AC 61 ms
75,408 KB
testcase_10 AC 63 ms
77,100 KB
testcase_11 AC 62 ms
75,432 KB
testcase_12 AC 62 ms
75,416 KB
testcase_13 AC 61 ms
75,412 KB
testcase_14 AC 63 ms
75,680 KB
testcase_15 AC 62 ms
75,284 KB
testcase_16 AC 62 ms
75,580 KB
testcase_17 AC 67 ms
77,616 KB
testcase_18 AC 65 ms
76,972 KB
testcase_19 AC 74 ms
77,860 KB
testcase_20 AC 86 ms
77,980 KB
testcase_21 AC 64 ms
76,688 KB
testcase_22 AC 67 ms
77,108 KB
testcase_23 AC 65 ms
77,116 KB
testcase_24 AC 87 ms
78,232 KB
testcase_25 AC 83 ms
77,728 KB
testcase_26 AC 70 ms
77,460 KB
testcase_27 AC 68 ms
76,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c=input();input()
d=[0]+[c+1]*c
for e in map(int,raw_input().split()):
 for j in range(e,c+1):d[j]=min(d[j-e]+1,d[j])
print-(d[c]>c)or d[c]
0