結果
問題 | No.250 atetubouのzetubou |
ユーザー | flippergo |
提出日時 | 2021-01-12 16:16:07 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 354 bytes |
コンパイル時間 | 308 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 849,220 KB |
最終ジャッジ日時 | 2024-11-21 09:47:19 |
合計ジャッジ時間 | 60,094 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
ソースコード
dp = [[0 for _ in range(3000)] for _ in range(3000)] for i in range(3000): dp[i][0] = 1 dp[i][i] = 1 for i in range(1,3000): for j in range(1,i): dp[i][j] = dp[i-1][j-1]+dp[i-1][j] Q = int(input()) for _ in range(Q): D,X,T = map(int,input().split()) if dp[X+D-1][D-1]<=T: print("AC") else: print("ZETUBOU")