結果
問題 | No.834 Random Walk Trip |
ユーザー | 37zigen |
提出日時 | 2019-05-25 01:07:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 333 ms / 2,000 ms |
コード長 | 1,527 bytes |
コンパイル時間 | 2,538 ms |
コンパイル使用メモリ | 77,888 KB |
実行使用メモリ | 100,400 KB |
最終ジャッジ日時 | 2024-09-17 14:59:52 |
合計ジャッジ時間 | 11,318 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 272 ms
98,292 KB |
testcase_01 | AC | 293 ms
98,448 KB |
testcase_02 | AC | 297 ms
100,400 KB |
testcase_03 | AC | 289 ms
98,232 KB |
testcase_04 | AC | 275 ms
98,116 KB |
testcase_05 | AC | 283 ms
98,396 KB |
testcase_06 | AC | 293 ms
88,472 KB |
testcase_07 | AC | 299 ms
88,628 KB |
testcase_08 | AC | 293 ms
88,312 KB |
testcase_09 | AC | 311 ms
88,628 KB |
testcase_10 | AC | 300 ms
88,600 KB |
testcase_11 | AC | 293 ms
88,680 KB |
testcase_12 | AC | 299 ms
88,588 KB |
testcase_13 | AC | 306 ms
88,588 KB |
testcase_14 | AC | 304 ms
88,588 KB |
testcase_15 | AC | 292 ms
88,768 KB |
testcase_16 | AC | 297 ms
88,384 KB |
testcase_17 | AC | 317 ms
89,272 KB |
testcase_18 | AC | 321 ms
89,788 KB |
testcase_19 | AC | 325 ms
92,556 KB |
testcase_20 | AC | 317 ms
89,720 KB |
testcase_21 | AC | 333 ms
92,800 KB |
testcase_22 | AC | 303 ms
88,644 KB |
testcase_23 | AC | 323 ms
91,628 KB |
testcase_24 | AC | 316 ms
88,792 KB |
testcase_25 | AC | 328 ms
92,488 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { new Main().run(); } final long MOD = (long) 1e9 + 7; long[] fac = new long[2000000]; long[] ifac = new long[2000000]; long[] inv = new long[2000000]; { fac[0] = ifac[0] = inv[0] = fac[1] = ifac[1] = inv[1] = 1; for (int i = 2; i < fac.length; ++i) { fac[i] = fac[i - 1] * i % MOD; } // 0 = p/i*i + (p%i) for (int i = 2; i < inv.length; ++i) { inv[i] = MOD - inv[(int) (MOD % i)] * (MOD / i) % MOD; } for (int i = 2; i < ifac.length; ++i) { ifac[i] = inv[i] * ifac[i - 1] % MOD; } } long comb(int n, int k) { return fac[n] * ifac[k] % MOD * ifac[n - k] % MOD; } void run() throws Exception { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int M = sc.nextInt(); if (N == 1) { System.out.println(1); return; } long ans = 0; int[] a = new int[M + 2]; a[0] = 1; for (int i = 1; i <= N; ++i) { for (int j = 0; i + j < a.length; j += 2 * N) { a[i + j] = i; if (i + j + N < a.length) a[i + j + N] = N + 1 - i; } } for (int i = 1; i < a.length; ++i) { if (a[i] != 1) continue; for (int d = 0; d <= 1; ++d) { int r = i - d; if (r % 2 != M % 2) continue; if (M - r < 0) continue; int l = (M - r) / 2; r += l; ans = (ans + comb(l + r, l)) % MOD; } } System.out.println(ans); } void tr(Object... objects) { System.out.println(Arrays.deepToString(objects)); } }