結果

問題 No.617 Nafmo、買い出しに行く
ユーザー sggkshiosggkshio
提出日時 2018-07-09 08:23:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 81,644 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-08 00:46:33
合計ジャッジ時間 1,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 14 ms
8,448 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 22 ms
10,368 KB
testcase_06 AC 39 ms
5,376 KB
testcase_07 AC 39 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 38 ms
11,136 KB
testcase_11 AC 42 ms
11,264 KB
testcase_12 AC 26 ms
12,800 KB
testcase_13 AC 17 ms
10,496 KB
testcase_14 AC 21 ms
11,520 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string>
#include<iostream>
#include<iostream>
#include<cctype>
#include<cstdio>
#include<vector>
#include<stack>
#include<queue>
#include <algorithm>
#include<math.h>
#include<set>
#include<map>
#include <sstream>
#include<iomanip>
#include <ctype.h>
using namespace std;

//#include<bits/stdc++.h>

bool f[22][2000005] = {};
int main() {
	long long int n, k, a[25] = {};
	cin >> n >> k;
	for (int i = 0; i < n; i++)
		cin >> a[i];

	int ans = 0;
	f[0][0] = 1;
	
		
		
		for (int i = 0; i < n; i++) {
			for (int j = 0; j <= k; j++) {
				if (!f[i][j])continue;
				f[i + 1][j] = 1;
				if (j + a[i] <= k) {
					f[i + 1][j + a[i]] = 1;
				}
			}
		}
	
	for (int i = k; i >= 0; i--) {
		if (f[n][i]) {
			cout << i<< endl;
			return 0;
		}
	}

	return 0;
}
0