結果

問題 No.617 Nafmo、買い出しに行く
ユーザー chocopuuchocopuu
提出日時 2019-01-21 23:31:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 1,617 ms
コンパイル使用メモリ 166,816 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-09-15 13:24:46
合計ジャッジ時間 3,005 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 AC 22 ms
5,376 KB
testcase_03 AC 31 ms
6,272 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 33 ms
7,040 KB
testcase_06 AC 32 ms
5,376 KB
testcase_07 AC 32 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 39 ms
6,656 KB
testcase_11 AC 40 ms
6,400 KB
testcase_12 AC 40 ms
7,552 KB
testcase_13 AC 40 ms
6,912 KB
testcase_14 AC 40 ms
6,912 KB
testcase_15 AC 38 ms
6,784 KB
testcase_16 AC 39 ms
6,784 KB
testcase_17 AC 39 ms
5,632 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int dp[2000200];
int main() {
    int N,K,x;
    cin>>N>>K;
    dp[0]=1;
    while(N--){
        cin>>x;
        for(int j = 2000199-x; j >= 0; --j)if(dp[j]!=0)dp[j+x]=1;
    }
    for(int i = K ; i >= 0 ; i--)if(dp[i]){
        cout<<i<<"\n";
        return 0;
    }
}
0