結果

問題 No.250 atetubouのzetubou
ユーザー BantakoBantako
提出日時 2017-08-22 15:13:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 637 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 167,836 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-10-15 04:21:43
合計ジャッジ時間 3,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
21,104 KB
testcase_01 AC 10 ms
21,120 KB
testcase_02 AC 30 ms
21,120 KB
testcase_03 AC 31 ms
21,120 KB
testcase_04 AC 28 ms
21,120 KB
testcase_05 AC 28 ms
20,992 KB
testcase_06 AC 24 ms
20,992 KB
testcase_07 AC 16 ms
20,992 KB
testcase_08 AC 26 ms
20,992 KB
testcase_09 AC 22 ms
21,120 KB
testcase_10 AC 27 ms
21,100 KB
testcase_11 AC 21 ms
21,120 KB
testcase_12 AC 27 ms
21,120 KB
testcase_13 AC 18 ms
21,120 KB
testcase_14 AC 8 ms
21,012 KB
testcase_15 AC 29 ms
21,120 KB
testcase_16 AC 30 ms
20,992 KB
testcase_17 AC 29 ms
20,992 KB
testcase_18 AC 29 ms
20,992 KB
testcase_19 AC 29 ms
21,120 KB
testcase_20 AC 9 ms
21,052 KB
testcase_21 AC 7 ms
21,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
ll INF = 1e17;
int MOD = 1e9+7;
ll dp[1510][1510];
main(){
    fill(dp[0],dp[0]+1501,1);
    for(int i = 0;i <= 1500;i++)dp[i][0] = 1;
    for(int i = 1;i < 1500;i++){
        for(int j = 1;j <= 1500;j++){
            if(dp[i-1][j] > (ll)(1e15) || dp[i][j-1] > (ll)(1e15))
                dp[i][j] = INF;
            else dp[i][j] = dp[i-1][j] + dp[i][j-1];
        }
    }
    int Q;
    cin >> Q;
    for(int i = 0;i < Q;i++){
        ll D,T,X;
        cin >> D >> T >> X;
        if(dp[D-1][T] > X)cout << "ZETUBOU" << endl;
        else cout << "AC" << endl;
    }
}
0