結果

問題 No.250 atetubouのzetubou
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-10 19:54:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 467 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 199,560 KB
実行使用メモリ 49,664 KB
最終ジャッジ日時 2024-07-19 17:23:32
合計ジャッジ時間 3,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
49,536 KB
testcase_01 AC 37 ms
49,536 KB
testcase_02 AC 54 ms
49,536 KB
testcase_03 AC 57 ms
49,664 KB
testcase_04 AC 57 ms
49,536 KB
testcase_05 AC 54 ms
49,536 KB
testcase_06 AC 49 ms
49,536 KB
testcase_07 AC 42 ms
49,536 KB
testcase_08 AC 52 ms
49,536 KB
testcase_09 AC 47 ms
49,536 KB
testcase_10 AC 52 ms
49,536 KB
testcase_11 AC 45 ms
49,536 KB
testcase_12 AC 50 ms
49,536 KB
testcase_13 AC 44 ms
49,536 KB
testcase_14 AC 35 ms
49,536 KB
testcase_15 AC 55 ms
49,536 KB
testcase_16 AC 52 ms
49,536 KB
testcase_17 AC 55 ms
49,536 KB
testcase_18 AC 52 ms
49,664 KB
testcase_19 AC 55 ms
49,536 KB
testcase_20 AC 35 ms
49,536 KB
testcase_21 AC 34 ms
49,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int q;cin>>q;
    ll c[3000][3000];
    for (int i=0;i<3000;i++) {
        c[i][0]=1;
        c[i][i]=1;
    }
    for (int i=2;i<3000;i++)
        for (int j=1;j<i;j++)
            c[i][j]=min((ll)1e15+1,c[i-1][j]+c[i-1][j-1]);
    while (q--) {
        ll d,x,t;
        cin>>d>>x>>t;
        if (c[d+x-1][d-1] > t) puts("ZETUBOU");
        else puts("AC");
    }
    return 0;
}
0