結果

問題 No.137 貯金箱の焦り
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-04 14:47:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 1,296 ms
コンパイル使用メモリ 159,720 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-04 01:50:59
合計ジャッジ時間 13,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
6,812 KB
testcase_01 AC 40 ms
6,940 KB
testcase_02 AC 77 ms
6,944 KB
testcase_03 AC 22 ms
6,944 KB
testcase_04 AC 274 ms
6,944 KB
testcase_05 AC 275 ms
6,948 KB
testcase_06 AC 275 ms
6,940 KB
testcase_07 AC 184 ms
6,940 KB
testcase_08 AC 184 ms
6,940 KB
testcase_09 AC 275 ms
6,944 KB
testcase_10 AC 166 ms
6,940 KB
testcase_11 AC 23 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 898 ms
6,940 KB
testcase_14 AC 899 ms
6,940 KB
testcase_15 AC 774 ms
6,944 KB
testcase_16 AC 792 ms
6,940 KB
testcase_17 AC 470 ms
6,940 KB
testcase_18 AC 755 ms
6,940 KB
testcase_19 AC 880 ms
6,940 KB
testcase_20 AC 40 ms
6,940 KB
testcase_21 AC 576 ms
6,940 KB
testcase_22 AC 183 ms
6,944 KB
testcase_23 AC 165 ms
6,944 KB
testcase_24 AC 415 ms
6,940 KB
testcase_25 AC 684 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define MAX 30000

long long dp[MAX];

long long mod = 1234567891;

int main() {
	int N;
	long long M;
	cin >> N >> M;
	vector<int> A(N);
	for (int i = 0; i < N; i++)
	{
		cin >> A[i];
	}

	dp[0] = 1;
	for (int t = 60; t >= 0; t--)
	{
		int add = (M >> t) % 2;
		for (int i = MAX - 1; i >= 0; i--)
		{
			if (i % 2 == add) dp[i] = dp[i / 2];
			else dp[i] = 0;
		}
		for (int i = 0; i < N; i++)
		{
			for (int j = A[i]; j < MAX; j++)
			{
				dp[j - A[i]] += dp[j];
				dp[j - A[i]] %= mod;
			}
		}
	}
	cout << dp[0] << endl;
}
0