結果

問題 No.617 Nafmo、買い出しに行く
ユーザー autumn_314autumn_314
提出日時 2018-08-14 11:03:20
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 159,860 KB
最終ジャッジ日時 2024-09-24 08:40:26
合計ジャッジ時間 3,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 109 ms
159,004 KB
testcase_07 WA -
testcase_08 AC 11 ms
10,360 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 214 ms
159,604 KB
testcase_16 WA -
testcase_17 AC 191 ms
158,128 KB
testcase_18 AC 5 ms
9,624 KB
testcase_19 AC 11 ms
9,972 KB
testcase_20 WA -
testcase_21 AC 41 ms
33,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void){
    int n,k,w,max=0;
    int wei[100005];
    scanf("%d%d",&n,&k);
    for(int i=0; i<n; i++){
        scanf("%d",&wei[i]);
    }
    int dp[25][2000005];
    for(int i=0; i<n; i++){
        for(int j=0; j<2000005; j++){
            if(n==0||k==0)dp[i][j]=0;
            else if(j+wei[i]>k)dp[i+1][j]=dp[i][j];
            else dp[i+1][j+wei[i]]=dp[i][j]+wei[i];
            if(max<j+wei[i]&&dp[i+1][j+wei[i]])max=j+wei[i];
        }
    }
    printf("%d",max);
    return 0;
}
0