結果

問題 No.2846 Birthday Cake
ユーザー uwiuwi
提出日時 2024-08-29 14:30:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 1,104 bytes
コンパイル時間 3,638 ms
コンパイル使用メモリ 79,212 KB
実行使用メモリ 57,200 KB
最終ジャッジ日時 2024-08-29 14:31:17
合計ジャッジ時間 10,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
56,776 KB
testcase_01 AC 130 ms
56,316 KB
testcase_02 AC 148 ms
56,872 KB
testcase_03 AC 116 ms
54,120 KB
testcase_04 AC 117 ms
53,212 KB
testcase_05 AC 152 ms
57,152 KB
testcase_06 AC 154 ms
56,996 KB
testcase_07 AC 161 ms
56,868 KB
testcase_08 AC 186 ms
57,084 KB
testcase_09 AC 161 ms
57,200 KB
testcase_10 AC 164 ms
56,904 KB
testcase_11 AC 163 ms
57,160 KB
testcase_12 AC 151 ms
57,036 KB
testcase_13 AC 159 ms
56,880 KB
testcase_14 AC 140 ms
56,984 KB
testcase_15 AC 147 ms
56,908 KB
testcase_16 AC 180 ms
57,016 KB
testcase_17 AC 165 ms
57,072 KB
testcase_18 AC 169 ms
57,188 KB
testcase_19 AC 136 ms
56,128 KB
testcase_20 AC 135 ms
55,968 KB
testcase_21 AC 141 ms
53,964 KB
testcase_22 AC 140 ms
56,828 KB
testcase_23 AC 140 ms
56,760 KB
testcase_24 AC 181 ms
57,084 KB
testcase_25 AC 126 ms
54,860 KB
testcase_26 AC 140 ms
56,724 KB
testcase_27 AC 154 ms
57,044 KB
testcase_28 AC 126 ms
54,208 KB
testcase_29 AC 151 ms
56,944 KB
testcase_30 AC 131 ms
54,196 KB
testcase_31 AC 142 ms
56,648 KB
testcase_32 AC 152 ms
56,896 KB
testcase_33 AC 188 ms
56,904 KB
testcase_34 AC 152 ms
56,892 KB
testcase_35 AC 152 ms
56,956 KB
testcase_36 AC 155 ms
56,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no2xxx;
import java.io.PrintWriter;
import java.util.*;

public class No2846_2 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";

	static void solve()
	{
		int K = ni(), n = ni();
		final int D = 55440;
		long[] dp = new long[D+1];
		dp[0] = 1;
		for(int i = 0;i < K;i++){
			long[] ndp = new long[D+1];
			for(int k = 1;k <= n;k++){
				if(k == 13 || k == 17 || k == 19 || k == 23)continue;
				int p = D/k;
				for(int j = 0;j+p <= D;j++) {
					ndp[j + p] += dp[j];
				}
			}
			dp = ndp;
		}
		long ans = dp[D] + (K == 13 || K == 17 || K == 19 || K == 23 ? 1 : 0);
		out.println(ans);
	}

	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0