結果
問題 | No.250 atetubouのzetubou |
ユーザー | masa |
提出日時 | 2015-07-24 23:57:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 802 bytes |
コンパイル時間 | 592 ms |
コンパイル使用メモリ | 68,500 KB |
実行使用メモリ | 73,984 KB |
最終ジャッジ日時 | 2024-07-16 01:02:19 |
合計ジャッジ時間 | 6,867 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <utility> #include <string> using namespace std; typedef vector<long long> VL2; typedef vector<VL2> VVL2; const long long INF = 1e16; const int D_MAX = 3005; VVL2 pascal; void make_pasckal() { pascal.assign(D_MAX, VL2(D_MAX, 0)); pascal[0][0] = 1; for (int i = 1; i < D_MAX; i++) { pascal[i][0] = 1; for (int j = 1; j <= i; j++) { pascal[i][j] = min(INF, pascal[i - 1][j - 1] + pascal[i - 1][j]); } cout << endl; } } int main() { int q; int d, x, t; make_pasckal(); cin >> q; vector<bool> ok(q); for (int i = 0; i < q; i++) { cin >> d >> x >> t; d--; ok[i] = (pascal[x+d][d] <= t); } for (int i = 0; i < q; i++) { cout << (ok[i] ? "AC" : "ZETUBOU") << endl; } return 0; }