結果

問題 No.129 お年玉(2)
ユーザー IL_mstaIL_msta
提出日時 2015-07-03 06:40:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 720 ms / 5,000 ms
コード長 1,146 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 83,792 KB
実行使用メモリ 165,504 KB
最終ジャッジ日時 2024-11-28 00:01:06
合計ジャッジ時間 14,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
18,432 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 223 ms
67,456 KB
testcase_06 AC 382 ms
113,664 KB
testcase_07 AC 548 ms
142,080 KB
testcase_08 AC 229 ms
67,840 KB
testcase_09 AC 520 ms
133,120 KB
testcase_10 AC 617 ms
146,432 KB
testcase_11 AC 301 ms
93,184 KB
testcase_12 AC 189 ms
61,056 KB
testcase_13 AC 143 ms
54,528 KB
testcase_14 AC 434 ms
121,216 KB
testcase_15 AC 337 ms
101,376 KB
testcase_16 AC 334 ms
103,296 KB
testcase_17 AC 580 ms
137,088 KB
testcase_18 AC 536 ms
133,248 KB
testcase_19 AC 419 ms
103,168 KB
testcase_20 AC 434 ms
125,440 KB
testcase_21 AC 716 ms
165,504 KB
testcase_22 AC 358 ms
103,424 KB
testcase_23 AC 615 ms
151,296 KB
testcase_24 AC 249 ms
72,960 KB
testcase_25 AC 272 ms
88,320 KB
testcase_26 AC 369 ms
97,408 KB
testcase_27 AC 363 ms
97,664 KB
testcase_28 AC 600 ms
158,208 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 5 ms
6,400 KB
testcase_36 AC 8 ms
7,296 KB
testcase_37 AC 9 ms
7,680 KB
testcase_38 AC 64 ms
29,184 KB
testcase_39 AC 107 ms
40,832 KB
testcase_40 AC 335 ms
92,544 KB
testcase_41 AC 178 ms
61,696 KB
testcase_42 AC 79 ms
33,152 KB
testcase_43 AC 59 ms
27,008 KB
testcase_44 AC 574 ms
129,536 KB
testcase_45 AC 44 ms
22,016 KB
testcase_46 AC 81 ms
33,664 KB
testcase_47 AC 720 ms
158,592 KB
testcase_48 AC 286 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES

#include <iostream>
#include <iomanip>

#include <algorithm>
#include <cmath>

#include <string>
#include <list>
#include <queue>
#include <vector>
#include <complex>
#include <set>

/////////
#define REP(i, x, n) for(int i = x; i < n; i++)
#define rep(i,n) REP(i,0,n)
#define P(p) cout<<(p)<<endl;
/////////
typedef long long LL;
typedef long double LD;
/////////
using namespace::std;
/////////
const LL mod = (LL)1e9;
const int maxC = 10000;
LL c[maxC][maxC/2];

LL ccc(LL n,LL k){
	LL ans;
	LL kk = min(k,n-k);
	if(n<maxC && kk < maxC && c[n][kk] != 0){
		ans = c[n][kk];
	}
	else if(kk ==0 ){
		if(n<maxC){
			c[n][kk] = 1;
		}
		ans = 1;
	}else if( kk==1){
		if(n<maxC){
			c[n][kk] = n%mod;
		}
		ans = n%mod;
	}
	else{
		ans = (ccc(n-1,kk-1)%mod+ccc(n-1,kk)%mod)%mod;
		if(n<maxC && kk < maxC){
			c[n][kk] = ans;
		}
	}

	return ans;
}
int main(void){
    std::cin.tie(0); 
    std::ios::sync_with_stdio(false);
    std::cout << std::fixed;//
    //cout << setprecision(6);//
    
	LL N,M;
	cin>>N>>M;
	LL ama = (N%(M*1000))/1000;
	//rep(i,maxC)rep(j,maxC)c[i][j]=-1;
	//N C ama
	P(ccc(M,ama));
    return 0;
}
0