結果

問題 No.44 DPなすごろく
ユーザー ku_material_roku_material_ro
提出日時 2016-10-23 19:49:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 877 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 61,312 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 04:55:18
合計ジャッジ時間 1,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <string>
#include <algorithm>
using namespace std;
int kaijo(long long n){
	long long ans = 1;
	if (n != 0){
		for (long long i = 0; i < n; i++){
			ans *= (n - i);
		}
	}
	else{
		ans = 1;
	}
	return ans;
}
int permtation(long long n,long long r){
	long long ans = 1;
	if (r != 0){
		for (long long i = 0; i < r; i++){
			ans *= (n - i);
		}
	}
	else{
		ans = 1;
	}
	return ans;
}

int main(){
	long long n;
	long long cnt1 = 0;
	long long cnt2 = 0;
	long long cntp = 0;
	cin >> n;
	cnt2 = n / 2;
	if ((n / 2) * 2 == n){
		cnt1 = 0;
	}
	else{
		cnt1 = 1;
	}
	while (1){
		if (cnt2 == 0) {
			cntp += 1;
			break;
		}
		if (cnt2 > cnt1){
			cntp += permtation(cnt2 + cnt1, cnt1) / kaijo(cnt1);
		}
		else{
			cntp += permtation(cnt2 + cnt1, cnt2) / kaijo(cnt2);
		}
		cnt2 -= 1;
		cnt1 += 2;
	}
	cout << cntp << endl;
	return 0;
}
0