結果

問題 No.129 お年玉(2)
ユーザー IL_mstaIL_msta
提出日時 2015-07-03 06:40:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 686 ms / 5,000 ms
コード長 1,146 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 84,204 KB
実行使用メモリ 165,632 KB
最終ジャッジ日時 2024-05-05 22:37:56
合計ジャッジ時間 13,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,688 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 214 ms
67,456 KB
testcase_06 AC 348 ms
113,536 KB
testcase_07 AC 520 ms
142,080 KB
testcase_08 AC 216 ms
67,712 KB
testcase_09 AC 498 ms
133,120 KB
testcase_10 AC 556 ms
146,304 KB
testcase_11 AC 269 ms
93,056 KB
testcase_12 AC 177 ms
60,800 KB
testcase_13 AC 142 ms
54,528 KB
testcase_14 AC 396 ms
121,216 KB
testcase_15 AC 312 ms
101,376 KB
testcase_16 AC 306 ms
103,168 KB
testcase_17 AC 575 ms
137,088 KB
testcase_18 AC 495 ms
133,248 KB
testcase_19 AC 408 ms
103,040 KB
testcase_20 AC 394 ms
125,440 KB
testcase_21 AC 686 ms
165,632 KB
testcase_22 AC 338 ms
103,296 KB
testcase_23 AC 568 ms
151,424 KB
testcase_24 AC 228 ms
72,960 KB
testcase_25 AC 230 ms
88,448 KB
testcase_26 AC 337 ms
97,408 KB
testcase_27 AC 329 ms
97,792 KB
testcase_28 AC 563 ms
158,208 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 5 ms
6,400 KB
testcase_36 AC 6 ms
7,296 KB
testcase_37 AC 7 ms
7,552 KB
testcase_38 AC 53 ms
29,184 KB
testcase_39 AC 89 ms
40,704 KB
testcase_40 AC 310 ms
92,544 KB
testcase_41 AC 159 ms
61,696 KB
testcase_42 AC 66 ms
33,152 KB
testcase_43 AC 51 ms
26,880 KB
testcase_44 AC 563 ms
129,408 KB
testcase_45 AC 37 ms
21,888 KB
testcase_46 AC 76 ms
33,664 KB
testcase_47 AC 663 ms
158,720 KB
testcase_48 AC 284 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