結果

問題 No.44 DPなすごろく
ユーザー YamaKasaYamaKasa
提出日時 2018-06-23 20:54:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 1,060 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-06-30 18:33:51
合計ジャッジ時間 6,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,260 KB
testcase_01 AC 126 ms
53,968 KB
testcase_02 AC 113 ms
52,868 KB
testcase_03 AC 121 ms
53,924 KB
testcase_04 AC 126 ms
53,588 KB
testcase_05 AC 123 ms
53,860 KB
testcase_06 AC 125 ms
54,052 KB
testcase_07 AC 118 ms
53,400 KB
testcase_08 AC 125 ms
53,928 KB
testcase_09 AC 123 ms
53,808 KB
testcase_10 AC 109 ms
52,420 KB
testcase_11 AC 128 ms
53,992 KB
testcase_12 AC 123 ms
53,776 KB
testcase_13 AC 125 ms
53,960 KB
testcase_14 AC 124 ms
53,888 KB
testcase_15 AC 127 ms
53,800 KB
testcase_16 AC 127 ms
54,000 KB
testcase_17 AC 128 ms
53,684 KB
testcase_18 AC 122 ms
53,772 KB
testcase_19 AC 130 ms
53,592 KB
testcase_20 AC 131 ms
53,812 KB
testcase_21 AC 133 ms
54,136 KB
testcase_22 AC 129 ms
53,716 KB
testcase_23 AC 121 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		scan.close();
		long ans = 0;
		int n = N / 2;
		for(int i = 0; i <= n; i++) {
			int k = N - 2 * i;
			int n1 = k + i;
			ans += comb(n1, i);
		}
		System.out.println(ans);
	}
	// n >= m
	public static long comb(int n, int r) {
	    if (n - r < r) r = n - r;
	    if (r == 0) return 1;
	    if (r == 1) return n;

	    int[] num = new int[r];
	    int[] den = new int[r];

	    for (int k = 0; k < r; k++){
	        num[k] = n - r + k + 1;
	        den[k] = k + 1;
	    }

	    for (int p = 2; p <= r; p++) {
	        int pivot = den[p - 1];
	        if (pivot > 1) {
	            int offset = (n - r) % p;
	            for (int k = p - 1; k < r; k += p) {
	                num[k - offset] /= pivot;
	                den[k] /= pivot;
	            }
	        }
	    }

	    long result = 1;
	    for (int k = 0; k < r; k++) {
	        if (num[k] > 1) result *= num[k];
	    }

	    return result;
	}

}
0