結果

問題 No.129 お年玉(2)
ユーザー furafura
提出日時 2020-05-12 01:14:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 200,172 KB
実行使用メモリ 236,928 KB
最終ジャッジ日時 2024-07-19 12:20:16
合計ジャッジ時間 8,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
22,144 KB
testcase_01 AC 235 ms
236,928 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 109 ms
108,672 KB
testcase_06 AC 161 ms
162,432 KB
testcase_07 AC 192 ms
194,816 KB
testcase_08 AC 132 ms
138,496 KB
testcase_09 AC 174 ms
180,736 KB
testcase_10 AC 200 ms
201,216 KB
testcase_11 AC 126 ms
133,504 KB
testcase_12 AC 160 ms
169,216 KB
testcase_13 AC 170 ms
176,128 KB
testcase_14 AC 163 ms
170,752 KB
testcase_15 AC 136 ms
143,616 KB
testcase_16 AC 153 ms
161,024 KB
testcase_17 AC 183 ms
191,616 KB
testcase_18 AC 174 ms
181,504 KB
testcase_19 AC 188 ms
192,384 KB
testcase_20 AC 187 ms
191,104 KB
testcase_21 AC 227 ms
232,448 KB
testcase_22 AC 134 ms
139,904 KB
testcase_23 AC 201 ms
206,848 KB
testcase_24 AC 193 ms
199,424 KB
testcase_25 AC 128 ms
134,272 KB
testcase_26 AC 130 ms
137,088 KB
testcase_27 AC 132 ms
133,504 KB
testcase_28 AC 233 ms
234,240 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 5 ms
7,936 KB
testcase_34 AC 3 ms
5,632 KB
testcase_35 AC 5 ms
7,424 KB
testcase_36 AC 5 ms
7,808 KB
testcase_37 AC 6 ms
8,704 KB
testcase_38 AC 32 ms
37,376 KB
testcase_39 AC 46 ms
52,096 KB
testcase_40 AC 117 ms
125,696 KB
testcase_41 AC 77 ms
82,048 KB
testcase_42 AC 37 ms
41,216 KB
testcase_43 AC 36 ms
40,704 KB
testcase_44 AC 233 ms
235,392 KB
testcase_45 AC 22 ms
26,496 KB
testcase_46 AC 51 ms
57,088 KB
testcase_47 AC 219 ms
228,608 KB
testcase_48 AC 136 ms
145,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	lint n;
	int m; cin>>n>>m;

	constexpr int MOD=1e9;
	static int C[10001][10001];
	rep(i,m+1) C[i][0]=1;
	for(int i=1;i<=m;i++) for(int j=1;j<=i;j++) C[i][j]=(C[i-1][j-1]+C[i-1][j])%MOD;

	printf("%d\n",C[m][(n/1000)%m]);

	return 0;
}
0