結果

問題 No.250 atetubouのzetubou
ユーザー 👑 obakyanobakyan
提出日時 2019-05-05 11:37:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 808 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 73,056 KB
実行使用メモリ 21,104 KB
最終ジャッジ日時 2024-06-24 12:37:52
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
21,104 KB
testcase_01 AC 12 ms
20,956 KB
testcase_02 AC 35 ms
21,024 KB
testcase_03 AC 35 ms
20,960 KB
testcase_04 AC 30 ms
21,024 KB
testcase_05 AC 30 ms
21,024 KB
testcase_06 AC 27 ms
20,860 KB
testcase_07 AC 18 ms
20,888 KB
testcase_08 AC 28 ms
20,900 KB
testcase_09 AC 24 ms
21,004 KB
testcase_10 AC 31 ms
21,032 KB
testcase_11 AC 21 ms
20,816 KB
testcase_12 AC 29 ms
20,992 KB
testcase_13 AC 20 ms
20,828 KB
testcase_14 AC 10 ms
20,912 KB
testcase_15 AC 31 ms
21,092 KB
testcase_16 AC 31 ms
21,104 KB
testcase_17 AC 31 ms
20,956 KB
testcase_18 AC 32 ms
21,016 KB
testcase_19 AC 31 ms
21,024 KB
testcase_20 AC 9 ms
20,900 KB
testcase_21 AC 9 ms
20,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <iostream>
#include <iomanip>
#include <numeric>
#define L64 long long
#define MOD (1000000007LL)

#define INF (1000000000000001LL)
static L64 dp[1500][1501];

int main(void)
{
  for(int i_x = 0; i_x < 1501; i_x++){
    dp[0][i_x] = 1;
  }
  for(int i_d = 1; i_d < 1500; i_d++){
    L64 psum = 0;
    for(int i_x = 0; i_x < 1501; i_x++){
      psum = std::min(INF, psum + dp[i_d - 1][i_x]);
      dp[i_d][i_x] = psum;
    }
  }
  int q; std::cin >> q;
  for(int i = 0; i < q; i++){
    int d, x;
    L64 t;
    std::cin >> d >> x >> t;
    if(dp[d - 1][x] <= t){
      std::cout << "AC" << std::endl;
    } else {
      std::cout << "ZETUBOU" << std::endl;
    }
  }
}
0