結果

問題 No.129 お年玉(2)
ユーザー Ai3ShotaAi3Shota
提出日時 2018-06-27 19:20:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 366 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 1,481 ms
コンパイル使用メモリ 157,688 KB
実行使用メモリ 433,280 KB
最終ジャッジ日時 2024-05-05 23:46:05
合計ジャッジ時間 19,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
433,024 KB
testcase_01 AC 344 ms
433,152 KB
testcase_02 AC 354 ms
433,024 KB
testcase_03 AC 357 ms
433,152 KB
testcase_04 AC 343 ms
433,152 KB
testcase_05 AC 347 ms
433,024 KB
testcase_06 AC 345 ms
433,152 KB
testcase_07 AC 343 ms
433,152 KB
testcase_08 AC 351 ms
433,024 KB
testcase_09 AC 350 ms
433,280 KB
testcase_10 AC 344 ms
433,024 KB
testcase_11 AC 350 ms
433,152 KB
testcase_12 AC 346 ms
433,152 KB
testcase_13 AC 355 ms
433,024 KB
testcase_14 AC 346 ms
433,280 KB
testcase_15 AC 349 ms
433,152 KB
testcase_16 AC 346 ms
433,024 KB
testcase_17 AC 346 ms
433,024 KB
testcase_18 AC 349 ms
433,024 KB
testcase_19 AC 348 ms
433,024 KB
testcase_20 AC 343 ms
433,152 KB
testcase_21 AC 346 ms
433,152 KB
testcase_22 AC 345 ms
433,152 KB
testcase_23 AC 342 ms
433,152 KB
testcase_24 AC 346 ms
433,024 KB
testcase_25 AC 352 ms
433,152 KB
testcase_26 AC 341 ms
433,024 KB
testcase_27 AC 344 ms
433,152 KB
testcase_28 AC 349 ms
433,024 KB
testcase_29 AC 344 ms
433,024 KB
testcase_30 AC 358 ms
433,152 KB
testcase_31 AC 357 ms
433,152 KB
testcase_32 AC 346 ms
433,152 KB
testcase_33 AC 346 ms
433,024 KB
testcase_34 AC 344 ms
433,152 KB
testcase_35 AC 346 ms
433,280 KB
testcase_36 AC 345 ms
433,280 KB
testcase_37 AC 342 ms
433,280 KB
testcase_38 AC 343 ms
433,152 KB
testcase_39 AC 343 ms
433,152 KB
testcase_40 AC 343 ms
433,152 KB
testcase_41 AC 353 ms
433,024 KB
testcase_42 AC 366 ms
433,152 KB
testcase_43 AC 342 ms
433,024 KB
testcase_44 AC 341 ms
433,152 KB
testcase_45 AC 341 ms
433,152 KB
testcase_46 AC 346 ms
433,024 KB
testcase_47 AC 353 ms
433,152 KB
testcase_48 AC 347 ms
433,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define MAX 10000
#define MOD 1000000000
typedef long long ll;
using namespace std;

ll N, M;

ll a[MAX + 1][MAX + 1] = {{0}};
ll nCr(ll n, ll r){
    for(int i = 0; i <= MAX; i++){
        for(int j = 0; j <= i; j++){
		    if(j == 0) a[i][j] = 1;
		    else a[i][j] = (a[i - 1][j] + a[i - 1][j - 1]) % MOD;
        }
	}
	return a[n][r];
}

int main(void){
    
    cin >> N >> M;
    cout << nCr(M, (N / 1000) % M) % MOD << endl;
    
    return 0;
}

0