結果

問題 No.250 atetubouのzetubou
ユーザー ssmkzkssmkzk
提出日時 2019-06-21 12:14:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 4,049 ms / 5,000 ms
コード長 210 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 114,392 KB
最終ジャッジ日時 2024-12-24 13:48:02
合計ジャッジ時間 55,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,572 ms
57,380 KB
testcase_01 AC 1,225 ms
57,504 KB
testcase_02 AC 3,383 ms
57,000 KB
testcase_03 AC 4,049 ms
57,624 KB
testcase_04 AC 3,325 ms
57,372 KB
testcase_05 AC 3,389 ms
57,244 KB
testcase_06 AC 2,841 ms
57,376 KB
testcase_07 AC 1,830 ms
57,512 KB
testcase_08 AC 3,193 ms
57,496 KB
testcase_09 AC 2,660 ms
57,500 KB
testcase_10 AC 3,433 ms
57,764 KB
testcase_11 AC 2,390 ms
57,248 KB
testcase_12 AC 3,089 ms
57,244 KB
testcase_13 AC 2,462 ms
57,436 KB
testcase_14 AC 922 ms
57,760 KB
testcase_15 AC 1,025 ms
57,376 KB
testcase_16 AC 1,017 ms
57,376 KB
testcase_17 AC 1,008 ms
57,500 KB
testcase_18 AC 1,046 ms
57,376 KB
testcase_19 AC 1,025 ms
57,608 KB
testcase_20 AC 920 ms
57,632 KB
testcase_21 AC 949 ms
114,392 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