結果

問題 No.250 atetubouのzetubou
ユーザー ferinferin
提出日時 2017-02-13 18:57:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 939 bytes
コンパイル時間 1,265 ms
コンパイル使用メモリ 158,260 KB
実行使用メモリ 28,540 KB
最終ジャッジ日時 2024-06-09 10:50:25
合計ジャッジ時間 2,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
28,540 KB
testcase_01 AC 14 ms
27,676 KB
testcase_02 AC 29 ms
27,116 KB
testcase_03 AC 32 ms
28,456 KB
testcase_04 AC 30 ms
27,640 KB
testcase_05 AC 30 ms
27,440 KB
testcase_06 AC 26 ms
27,612 KB
testcase_07 AC 18 ms
27,360 KB
testcase_08 AC 29 ms
27,656 KB
testcase_09 AC 24 ms
27,840 KB
testcase_10 AC 32 ms
27,100 KB
testcase_11 AC 24 ms
26,960 KB
testcase_12 AC 30 ms
26,992 KB
testcase_13 AC 21 ms
27,048 KB
testcase_14 AC 11 ms
28,324 KB
testcase_15 AC 30 ms
28,192 KB
testcase_16 AC 30 ms
28,520 KB
testcase_17 AC 32 ms
27,300 KB
testcase_18 AC 30 ms
27,132 KB
testcase_19 AC 30 ms
27,836 KB
testcase_20 AC 12 ms
27,788 KB
testcase_21 AC 11 ms
27,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef pair<int, int> PII;

#define FOR(i, a, n) for (int i = (int)a; i < (int)n; ++i)
#define REP(i, n) FOR(i, 0, n)
#define ALL(x) x.begin(), x.end()
#define MOD 1000000007
#define INF 1000000000
#define PI 3.14159265359
#define EPS 1e-12

ll dp[2000][2000];

int main(void)
{
  REP(i, 1505) dp[0][i] = 1;
  REP(i, 1505) dp[i][0] = 1;
  FOR(i, 1, 1505) {
    FOR(j, 1, 1505) {
      if(dp[i][j-1] + dp[i-1][j] > 1000000000000000) dp[i][j] = 1000000000000001;
      else dp[i][j] = dp[i][j-1] + dp[i-1][j];
    }
  }

  int q;
  cin >> q;
  REP(i, q) {
    ll d, x, t;
    cin >> d >> x >> t;

    //cout << dp[d-2][x-1] << " ";
    if(dp[d-1][x] > t) cout << "ZETUBOU" << endl;
    else if(dp[d-1][x] <= t) cout << "AC" << endl;
    else assert(false);
  }

  return 0;
}
0