結果
問題 | No.1474 かさまJ |
ユーザー | gorugo30 |
提出日時 | 2021-02-19 22:19:17 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,485 ms / 2,500 ms |
コード長 | 1,893 bytes |
コンパイル時間 | 2,318 ms |
コンパイル使用メモリ | 77,256 KB |
実行使用メモリ | 51,976 KB |
最終ジャッジ日時 | 2024-09-16 20:07:47 |
合計ジャッジ時間 | 14,992 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
41,528 KB |
testcase_01 | AC | 135 ms
41,516 KB |
testcase_02 | AC | 154 ms
41,964 KB |
testcase_03 | AC | 122 ms
40,492 KB |
testcase_04 | AC | 137 ms
41,696 KB |
testcase_05 | AC | 1,224 ms
48,260 KB |
testcase_06 | AC | 242 ms
42,936 KB |
testcase_07 | AC | 139 ms
42,068 KB |
testcase_08 | AC | 143 ms
41,444 KB |
testcase_09 | AC | 1,485 ms
47,940 KB |
testcase_10 | AC | 291 ms
42,580 KB |
testcase_11 | AC | 176 ms
41,736 KB |
testcase_12 | AC | 159 ms
41,796 KB |
testcase_13 | AC | 1,001 ms
47,836 KB |
testcase_14 | AC | 568 ms
43,016 KB |
testcase_15 | AC | 288 ms
42,400 KB |
testcase_16 | AC | 298 ms
42,344 KB |
testcase_17 | AC | 700 ms
47,712 KB |
testcase_18 | AC | 1,143 ms
47,820 KB |
testcase_19 | AC | 1,306 ms
51,976 KB |
testcase_20 | AC | 1,345 ms
51,776 KB |
ソースコード
import java.util.*; class Main{ private static long MOD = 1000000007; private static long fac[] = new long[50000]; private static long modpow(long x, long p){ long ret = 1; while (p > 0){ if (p % 2 == 1) ret = (ret * x) % MOD; x = (x * x) % MOD; p >>= 1; } return ret; } private static long nCr(int n, int r){ if (n < r) return 0; return (((fac[n] * modpow(fac[n - r], MOD - 2)) % MOD) * modpow(fac[r], MOD - 2)) % MOD; } private static int min(int x, int y){ if (x < y) return x; return y; } public static void main(String[] args){ Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int MP = sc.nextInt(); int Mq = sc.nextInt(); int L = sc.nextInt(); int S[] = new int[N]; for (int i = 0; i < N; i++){ S[i] = sc.nextInt(); } long dp[][] = new long[N + 1][Mq + 1]; dp[0][Mq] = 1; for (int i = 1; i <= min(S[0], Mq); i++){ dp[1][Mq - i] = 1; } for (int i = 1; i < N; i++){ for (int k = N; k >= 1; k--){ long sum = 0; for (int r = Mq; r >= 0; r--){ dp[k][r] = (dp[k][r] + sum) % MOD; sum = (sum + dp[k - 1][r]) % MOD; if (r + S[i] <= Mq) sum = (sum - dp[k - 1][r + S[i]] + MOD) % MOD; } } } fac[0] = 1; for (int i = 1; i < 50000; i++){ fac[i] = (fac[i - 1] * i) % MOD; } long ans = 0; for (int m = 0; m <= Mq; m++){ for (int x = 0; x <= N; x++){ ans = (ans + dp[x][Mq - m] * nCr(MP + m - L * x + N - 1, N - 1)) % MOD; } } System.out.println(ans); } }