結果

問題 No.250 atetubouのzetubou
ユーザー ssmkzkssmkzk
提出日時 2019-06-21 12:14:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,694 ms / 5,000 ms
コード長 210 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,020 KB
最終ジャッジ日時 2024-06-06 20:02:53
合計ジャッジ時間 53,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,486 ms
57,252 KB
testcase_01 AC 1,189 ms
57,628 KB
testcase_02 AC 3,428 ms
57,652 KB
testcase_03 AC 3,694 ms
57,492 KB
testcase_04 AC 3,358 ms
57,776 KB
testcase_05 AC 3,451 ms
58,016 KB
testcase_06 AC 2,882 ms
57,496 KB
testcase_07 AC 1,856 ms
57,632 KB
testcase_08 AC 3,195 ms
57,388 KB
testcase_09 AC 2,691 ms
57,636 KB
testcase_10 AC 3,401 ms
57,624 KB
testcase_11 AC 2,429 ms
57,760 KB
testcase_12 AC 3,150 ms
57,764 KB
testcase_13 AC 2,161 ms
57,372 KB
testcase_14 AC 931 ms
57,388 KB
testcase_15 AC 1,011 ms
57,376 KB
testcase_16 AC 1,017 ms
58,020 KB
testcase_17 AC 1,002 ms
57,708 KB
testcase_18 AC 1,021 ms
57,504 KB
testcase_19 AC 1,014 ms
57,500 KB
testcase_20 AC 979 ms
57,496 KB
testcase_21 AC 914 ms
57,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import comb

Q = int(input())

for i in range(Q):
    D, X, T = map(int,input().split())
    if T < comb(D + X - 1, D - 1, exact=True):
        print("ZETUBOU")
    else:
        print("AC")
0