結果

問題 No.137 貯金箱の焦り
ユーザー ぴろずぴろず
提出日時 2015-02-24 00:31:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,179 ms / 5,000 ms
コード長 756 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 42,104 KB
最終ジャッジ日時 2024-11-07 23:06:19
合計ジャッジ時間 13,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
41,796 KB
testcase_01 AC 177 ms
41,880 KB
testcase_02 AC 199 ms
41,548 KB
testcase_03 AC 132 ms
41,564 KB
testcase_04 AC 207 ms
41,744 KB
testcase_05 AC 178 ms
41,548 KB
testcase_06 AC 206 ms
41,508 KB
testcase_07 AC 193 ms
41,696 KB
testcase_08 AC 197 ms
41,588 KB
testcase_09 AC 210 ms
41,768 KB
testcase_10 AC 229 ms
41,560 KB
testcase_11 AC 208 ms
41,928 KB
testcase_12 AC 1,179 ms
41,692 KB
testcase_13 AC 261 ms
41,792 KB
testcase_14 AC 873 ms
41,736 KB
testcase_15 AC 778 ms
41,588 KB
testcase_16 AC 773 ms
41,648 KB
testcase_17 AC 462 ms
41,888 KB
testcase_18 AC 474 ms
41,828 KB
testcase_19 AC 842 ms
42,004 KB
testcase_20 AC 217 ms
41,820 KB
testcase_21 AC 566 ms
42,104 KB
testcase_22 AC 269 ms
41,820 KB
testcase_23 AC 228 ms
41,764 KB
testcase_24 AC 411 ms
41,708 KB
testcase_25 AC 653 ms
41,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no137;

import java.util.Scanner;

public class Main {
	public static final int MAX = 50000;
	public static final long MOD = 1234567891;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long m = sc.nextLong();
		int[] a = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}
		long[] dp = new long[MAX+1];
		dp[0] = 1;
		while(m > 0) {
			for(int i=0;i<n;i++) {
				for(int j=MAX;j>=a[i];j--) {
					dp[j] += dp[j-a[i]];
					if (dp[j] >= MOD) {
						dp[j] -= MOD;
					}
				}
			}
			for(int i=0;i<=MAX;i++) {
				int j = (int) (i * 2 + (m & 1));
				if (j <= MAX) {
					dp[i] = dp[j];
				}else{
					dp[i] = 0;
				}
			}
			m /= 2;
		}
		System.out.println(dp[0]);
	}

}
0