結果

問題 No.250 atetubouのzetubou
ユーザー ngtkanangtkana
提出日時 2020-03-22 12:49:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 792 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 205,344 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2024-06-06 22:32:37
合計ジャッジ時間 4,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
73,600 KB
testcase_01 AC 70 ms
73,600 KB
testcase_02 AC 75 ms
73,600 KB
testcase_03 AC 76 ms
73,600 KB
testcase_04 AC 74 ms
73,728 KB
testcase_05 AC 75 ms
73,600 KB
testcase_06 AC 73 ms
73,728 KB
testcase_07 AC 69 ms
73,728 KB
testcase_08 AC 72 ms
73,728 KB
testcase_09 AC 73 ms
73,728 KB
testcase_10 AC 77 ms
73,728 KB
testcase_11 AC 73 ms
73,728 KB
testcase_12 AC 72 ms
73,600 KB
testcase_13 AC 73 ms
73,728 KB
testcase_14 AC 72 ms
73,600 KB
testcase_15 AC 75 ms
73,728 KB
testcase_16 AC 72 ms
73,728 KB
testcase_17 AC 72 ms
73,728 KB
testcase_18 AC 73 ms
73,600 KB
testcase_19 AC 72 ms
73,728 KB
testcase_20 AC 70 ms
73,600 KB
testcase_21 AC 71 ms
73,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
lint inf=std::numeric_limits<lint>::max();
lint add(lint x,lint y){return inf-x<=y?inf:x+y;}
void add_eq(lint&x,lint y){x=add(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 max=3000;
    std::vector<std::vector<lint>>binom(max+1,std::vector<lint>(max+1));
    binom.at(0).at(0)=1;
    for(lint i=0;i<max;i++){
        for(lint j=0;j<=i;j++){
            add_eq(binom.at(i+1).at(j),binom.at(i).at(j));
            add_eq(binom.at(i+1).at(j+1),binom.at(i).at(j));
        }
    }
    lint q;std::cin>>q;
    while(q--){
        lint d,x,t;std::cin>>d>>x>>t;
        std::cout<<(binom.at(x+d-1).at(d-1)<=t?"AC":"ZETUBOU")<<'\n';
    }
}
0