結果

問題 No.617 Nafmo、買い出しに行く
ユーザー chocopuuchocopuu
提出日時 2019-01-21 23:27:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 323 bytes
コンパイル時間 1,490 ms
コンパイル使用メモリ 165,508 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-15 13:24:00
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,136 KB
testcase_01 AC 10 ms
11,392 KB
testcase_02 AC 23 ms
11,148 KB
testcase_03 AC 32 ms
11,196 KB
testcase_04 AC 14 ms
11,264 KB
testcase_05 AC 33 ms
11,136 KB
testcase_06 AC 35 ms
11,284 KB
testcase_07 AC 35 ms
11,096 KB
testcase_08 AC 7 ms
11,264 KB
testcase_09 RE -
testcase_10 AC 41 ms
11,264 KB
testcase_11 AC 41 ms
11,316 KB
testcase_12 AC 41 ms
11,136 KB
testcase_13 AC 41 ms
11,236 KB
testcase_14 AC 44 ms
11,232 KB
testcase_15 AC 41 ms
11,136 KB
testcase_16 AC 40 ms
11,208 KB
testcase_17 AC 40 ms
11,180 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
    int N,K,x;
    cin>>N>>K;
    int dp[2000200]={};
    dp[0]=1;
    while(N--){
        cin>>x;
        for(int j = 2000210-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