結果
問題 | No.129 お年玉(2) |
ユーザー | ttakano |
提出日時 | 2017-11-30 11:33:25 |
言語 | C++11 (gcc 13.3.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 655 bytes |
コンパイル時間 | 1,473 ms |
コンパイル使用メモリ | 159,488 KB |
実行使用メモリ | 753,412 KB |
最終ジャッジ日時 | 2024-12-20 10:12:34 |
合計ジャッジ時間 | 11,658 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
103,136 KB |
testcase_01 | AC | 443 ms
504,624 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 181 ms
273,228 KB |
testcase_06 | AC | 309 ms
372,460 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 236 ms
397,132 KB |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 1 ms
6,816 KB |
testcase_31 | AC | 3 ms
7,564 KB |
testcase_32 | AC | 2 ms
6,816 KB |
testcase_33 | AC | 14 ms
62,740 KB |
testcase_34 | AC | 8 ms
36,208 KB |
testcase_35 | AC | 14 ms
58,836 KB |
testcase_36 | AC | 14 ms
62,888 KB |
testcase_37 | AC | 17 ms
73,176 KB |
testcase_38 | AC | 63 ms
251,116 KB |
testcase_39 | AC | 80 ms
278,192 KB |
testcase_40 | MLE | - |
testcase_41 | AC | 114 ms
333,148 KB |
testcase_42 | AC | 70 ms
257,896 KB |
testcase_43 | AC | 69 ms
256,548 KB |
testcase_44 | MLE | - |
testcase_45 | AC | 49 ms
204,108 KB |
testcase_46 | AC | 89 ms
317,284 KB |
testcase_47 | MLE | - |
testcase_48 | MLE | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define print(x) cout<<x<<endl; #define rep(i,a,b) for(int i=a;i<b;i++) #define REP(i,a) for(int i=0;i<a;i++) #define printall(n,array) for(int i=0;i<n;i++){cout<<array[i];}cout<<endl; typedef long long ll; typedef pair<int, int> PI; typedef pair<int, PI> V; typedef vector<int> VE; const ll mod = 1000000000; ll ncr[10010][10010]; void nCr(int n){ REP(i,n+1)REP(j,i+1){ if(j==0)ncr[i][j]=1; else ncr[i][j]=(ncr[i-1][j]+ncr[i-1][j-1])%mod; } } int main(){ ll n; ll m; cin>>n; cin>>m; ll rest=0; rest=(n%(1000*m)); rest-=rest%1000; rest/=1000; nCr(m); print(ncr[m][rest]); }