結果

問題 No.250 atetubouのzetubou
ユーザー yumechiyumechi
提出日時 2016-03-11 02:23:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 82,632 KB
最終ジャッジ日時 2024-09-24 23:41:42
合計ジャッジ時間 6,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
82,228 KB
testcase_01 AC 108 ms
81,452 KB
testcase_02 AC 413 ms
81,664 KB
testcase_03 AC 451 ms
82,308 KB
testcase_04 AC 408 ms
81,896 KB
testcase_05 AC 414 ms
81,928 KB
testcase_06 AC 341 ms
82,012 KB
testcase_07 AC 214 ms
81,980 KB
testcase_08 AC 385 ms
81,496 KB
testcase_09 AC 315 ms
81,672 KB
testcase_10 AC 415 ms
81,776 KB
testcase_11 AC 283 ms
81,896 KB
testcase_12 AC 383 ms
82,068 KB
testcase_13 AC 256 ms
82,060 KB
testcase_14 AC 45 ms
65,212 KB
testcase_15 AC 147 ms
82,608 KB
testcase_16 AC 155 ms
82,632 KB
testcase_17 AC 146 ms
82,056 KB
testcase_18 AC 146 ms
82,496 KB
testcase_19 AC 153 ms
82,508 KB
testcase_20 AC 43 ms
63,740 KB
testcase_21 AC 42 ms
63,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    fact = [1]*3001
    s = 1
    for i in range(1, 3001):
        s *= i
        fact[i] = s

    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(list(str(ans)))
        print(list(str(t)))
        print(n, r, n-r)
        """
        print("AC" if ans <= t else "ZETUBOU")


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