結果
問題 | No.250 atetubouのzetubou |
ユーザー | masa |
提出日時 | 2015-09-23 17:21:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 528 ms |
コンパイル使用メモリ | 65,688 KB |
実行使用メモリ | 73,728 KB |
最終ジャッジ日時 | 2024-07-19 08:48:43 |
合計ジャッジ時間 | 7,452 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | AC | 57 ms
73,600 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 54 ms
73,600 KB |
testcase_21 | AC | 56 ms
73,600 KB |
ソースコード
#include <iostream> #include <cstdio> #include <vector> using namespace std; typedef vector<long long> VLL; typedef vector<VLL> VVLL; VVLL pascal; const long long INF = 1e16; const int PASCAL_MAX = 3000; void make_pascal() { pascal.assign(PASCAL_MAX + 1, VLL(PASCAL_MAX + 1, INF)); pascal[0][0] = 1; for (int i = 1; i <= PASCAL_MAX; i++) { pascal[i][0] = 1; pascal[i][i] = 1; for (int j = 1; j < i; j++) { pascal[i][j] = min(INF, pascal[i - 1][j - 1] + pascal[i - 1][j]); } } } int main() { make_pascal(); int q, d, x, t; cin >> q; vector<bool> ok(q); for (int i = 0; i < q; i++) { cin >> d >> x >> t; d--; ok[i] = (pascal[d+x][x] <= t); } for (int i = 0; i < q; i++) { cout << (ok[i] ? "AC" : "ZETUBOU") << endl; } return 0; }