結果
問題 | No.250 atetubouのzetubou |
ユーザー | tnoda_ |
提出日時 | 2015-08-18 18:19:07 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 528 bytes |
コンパイル時間 | 42 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 42,752 KB |
最終ジャッジ日時 | 2024-07-18 10:10:53 |
合計ジャッジ時間 | 10,626 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
TMAX = 10 ** 15 dp = [[0] * 3010 for i in range(1510)] for i in range(1510): dp[i][0] = 1 for i in xrange(1, 1501): for j in xrange(1, i+1): p = dp[i-1][j-1] q = dp[i-1][j] if p < 0 or q < 0 or p + q > TMAX: dp[i][j] = -1 else: dp[i][j] = p + q def solve(): D, X, T = map(int, raw_input().strip().split()) z = dp[X+D-1][D-1] if z < 0 or z > T: return "ZETRUBOU" else: return "AC" Q = input() for i in range(Q): print(solve())