結果

問題 No.129 お年玉(2)
ユーザー ngtkanangtkana
提出日時 2020-04-07 22:34:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 388 ms / 5,000 ms
コード長 938 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 205,932 KB
実行使用メモリ 394,240 KB
最終ジャッジ日時 2024-07-08 07:21:10
合計ジャッジ時間 11,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
22,528 KB
testcase_01 AC 388 ms
394,240 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 151 ms
162,432 KB
testcase_06 AC 240 ms
256,512 KB
testcase_07 AC 300 ms
314,624 KB
testcase_08 AC 210 ms
214,528 KB
testcase_09 AC 286 ms
289,408 KB
testcase_10 AC 319 ms
326,016 KB
testcase_11 AC 202 ms
205,696 KB
testcase_12 AC 260 ms
268,672 KB
testcase_13 AC 275 ms
281,216 KB
testcase_14 AC 271 ms
271,616 KB
testcase_15 AC 218 ms
223,360 KB
testcase_16 AC 251 ms
254,080 KB
testcase_17 AC 300 ms
308,480 KB
testcase_18 AC 288 ms
290,688 KB
testcase_19 AC 302 ms
310,144 KB
testcase_20 AC 309 ms
307,712 KB
testcase_21 AC 388 ms
384,896 KB
testcase_22 AC 204 ms
216,832 KB
testcase_23 AC 317 ms
336,128 KB
testcase_24 AC 309 ms
322,816 KB
testcase_25 AC 197 ms
206,848 KB
testcase_26 AC 203 ms
211,840 KB
testcase_27 AC 193 ms
205,568 KB
testcase_28 AC 374 ms
388,864 KB
testcase_29 AC 2 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 4 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 4 ms
5,504 KB
testcase_37 AC 4 ms
6,144 KB
testcase_38 AC 41 ms
44,672 KB
testcase_39 AC 63 ms
67,840 KB
testcase_40 AC 183 ms
192,000 KB
testcase_41 AC 110 ms
116,992 KB
testcase_42 AC 48 ms
50,688 KB
testcase_43 AC 45 ms
49,792 KB
testcase_44 AC 373 ms
390,912 KB
testcase_45 AC 26 ms
28,672 KB
testcase_46 AC 70 ms
75,776 KB
testcase_47 AC 374 ms
377,600 KB
testcase_48 AC 224 ms
226,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ALL(v) std::begin(v),std::end(v)
using lint=long long;
using lubl=long double;
lint mod=1'000'000'000;
struct mint{
    lint value;
    mint()=default;
    mint(lint x):value(x){}
};
std::ostream&operator<<(std::ostream&os,mint x){return os<<x.value;}
mint operator+(mint x,mint y){lint z=x.value+y.value;if(mod<=z)z-=mod;return z;}
mint&operator+=(mint&x,mint y){return x=x+y;}
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint a,b;std::cin>>a>>b;
    a/=1'000;
    a%=b;
    std::vector<std::vector<mint>>binom(b+1);
    binom.at(0)={1};
    for(lint i=0;i<b;i++){
        binom.at(i+1).resize(i+2);
        for(lint j=0;j<=i;j++){
            mint x=binom.at(i).at(j);
            binom.at(i+1).at(j)+=x;
            binom.at(i+1).at(j+1)+=x;
        }
    }
    std::cout<<binom.at(b).at(a)<<'\n';
}
0