結果

問題 No.834 Random Walk Trip
ユーザー 37zigen37zigen
提出日時 2019-05-25 01:00:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 1,712 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 78,164 KB
実行使用メモリ 106,016 KB
最終ジャッジ日時 2024-09-17 14:59:31
合計ジャッジ時間 8,812 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
101,544 KB
testcase_01 AC 218 ms
101,548 KB
testcase_02 AC 219 ms
101,836 KB
testcase_03 AC 222 ms
101,780 KB
testcase_04 AC 219 ms
101,536 KB
testcase_05 AC 221 ms
101,608 KB
testcase_06 AC 218 ms
101,648 KB
testcase_07 AC 227 ms
101,652 KB
testcase_08 AC 228 ms
101,612 KB
testcase_09 AC 231 ms
101,544 KB
testcase_10 AC 227 ms
101,608 KB
testcase_11 AC 226 ms
101,700 KB
testcase_12 AC 217 ms
101,716 KB
testcase_13 AC 214 ms
101,700 KB
testcase_14 AC 219 ms
101,580 KB
testcase_15 AC 227 ms
101,484 KB
testcase_16 AC 225 ms
101,804 KB
testcase_17 AC 239 ms
101,808 KB
testcase_18 AC 249 ms
101,972 KB
testcase_19 AC 243 ms
106,016 KB
testcase_20 AC 238 ms
101,828 KB
testcase_21 AC 240 ms
105,904 KB
testcase_22 AC 225 ms
101,620 KB
testcase_23 AC 240 ms
103,832 KB
testcase_24 AC 232 ms
101,804 KB
testcase_25 AC 248 ms
105,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
			int r = i - 1;
			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;
		}
		for (int i = 1; i < a.length; ++i) {
			if (a[i] != 1)
				continue;
			int r = i;
			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));
	}

}
0