結果

問題 No.250 atetubouのzetubou
ユーザー yumechiyumechi
提出日時 2016-03-16 13:53:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,150 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-10-01 20:13:54
合計ジャッジ時間 17,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 829 ms
16,896 KB
testcase_01 AC 468 ms
16,768 KB
testcase_02 AC 1,043 ms
16,896 KB
testcase_03 AC 1,150 ms
16,896 KB
testcase_04 AC 1,062 ms
16,896 KB
testcase_05 AC 1,076 ms
17,024 KB
testcase_06 AC 927 ms
16,896 KB
testcase_07 AC 639 ms
16,896 KB
testcase_08 AC 1,014 ms
17,024 KB
testcase_09 AC 861 ms
16,768 KB
testcase_10 AC 1,082 ms
16,896 KB
testcase_11 AC 788 ms
17,024 KB
testcase_12 AC 1,021 ms
17,024 KB
testcase_13 AC 730 ms
16,896 KB
testcase_14 AC 387 ms
16,896 KB
testcase_15 AC 477 ms
16,896 KB
testcase_16 AC 459 ms
16,768 KB
testcase_17 AC 461 ms
16,896 KB
testcase_18 AC 471 ms
16,896 KB
testcase_19 AC 459 ms
17,024 KB
testcase_20 AC 382 ms
16,896 KB
testcase_21 AC 389 ms
16,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial
 
def solve():
    fact = [factorial(i) for i in range(3001)]

    for i in range(int(input())):
        d, x, t = map(int, input().split())
        n = (d + x - 1)
        r = x if (n//2 > x) else (n - x)
        ans = fact[n] // (fact[n - r] * fact[r])
        print("AC" if ans <= t else "ZETUBOU")

if __name__=="__main__":
    solve()
0