結果
問題 | No.250 atetubouのzetubou |
ユーザー | nanophoto12 |
提出日時 | 2016-01-08 00:13:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,202 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 85,700 KB |
実行使用メモリ | 23,476 KB |
最終ジャッジ日時 | 2024-09-19 13:05:38 |
合計ジャッジ時間 | 38,297 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <list> #include <deque> #include <queue> #include <stack> #include <set> #include <map> #include <algorithm> #include <cmath> #include <cstring> #include <limits> using namespace std; #define FOR(x,y) for(int x = 0;x < (y);x++) #define LLI long long int #define FORR(x,arr) for(auto& x:arr) #define ALL(a) (a.begin()),(a.end()) #define _L(x) cout<<(x)<<endl static const int MAX_N = 1600; LLI dp[MAX_N][MAX_N]; int main() { FOR(i, 1501) { dp[i][0] = 1; dp[i][1] = i; } FOR(i, 1501) { dp[1][i] = 1; } for(int k = 2;k < 1501;k++) { for(int i = 1;i < 1501;i++) { int sum = 0; for(int j = 0;j <= k;j++) { sum += dp[1][j] * dp[i][k-j]; } dp[i+1][k] = sum; } } int n; cin >> n; FOR(i, n) { LLI d, x, t; cin >> d >> x >> t; auto r = dp[d][x]; cout << r << endl; if(r <= t) { cout << "AC" << endl; } else { cout << "ZETUBOU" << endl; } } return 0; }