結果

問題 No.250 atetubouのzetubou
ユーザー flippergoflippergo
提出日時 2021-01-12 15:59:39
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 357 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 849,388 KB
最終ジャッジ日時 2024-11-21 09:44:30
合計ジャッジ時間 46,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 RE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 RE -
testcase_09 MLE -
testcase_10 RE -
testcase_11 RE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 RE -
testcase_15 AC 159 ms
81,468 KB
testcase_16 AC 143 ms
79,464 KB
testcase_17 AC 144 ms
80,596 KB
testcase_18 AC 161 ms
83,092 KB
testcase_19 AC 148 ms
81,024 KB
testcase_20 AC 36 ms
52,580 KB
testcase_21 AC 108 ms
88,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

memo = {}
def f(n,k):
    if k>n or k<0:
        return 0
    if k==n or k==0:
        return 1
    if (n,k) in memo:
        return memo[(n,k)]
    memo[(n,k)] = f(n-1,k-1)+f(n-1,k)
    return memo[(n,k)]
Q = int(input())
for _ in range(Q):
    D,X,T = map(int,input().split())
    if f(X+D-1,D-1)<=T:
        print("AC")
    else:
        print("ZETUBOU")
0