結果
問題 | No.250 atetubouのzetubou |
ユーザー | a |
提出日時 | 2016-07-09 05:26:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 636 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 32,640 KB |
実行使用メモリ | 89,728 KB |
最終ジャッジ日時 | 2024-10-13 08:07:31 |
合計ジャッジ時間 | 11,576 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
ソースコード
#include <cstdio> using namespace std; typedef long long ll; double dp[3333][3333]; int main(void) { int q; scanf("%d", &q); dp[0][0] = 1; for (int i = 0; i < 3333; i++) { for (int j = 0; j < 3333; j++) { if (dp[i][j] >= 1e15) { dp[i][j] = -1; } if (dp[i][j] < 0) { dp[i+1][j] = dp[i+1][j+1] = -1; } else { dp[i+1][j] += dp[i][j]; dp[i+1][j+1] += dp[i][j]; } } } for (int iii = 0; iii < q; iii++) { int d, x; ll t; scanf("%d%d%lld", &d, &x, &t); double s = dp[d+x-1][x]; puts((s<0||s>t) ? "ZETUBOU" : "AC"); } return 0; }