結果

問題 No.250 atetubouのzetubou
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-15 01:17:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,676 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 78,544 KB
最終ジャッジ日時 2024-06-30 23:43:44
合計ジャッジ時間 18,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 986 ms
78,180 KB
testcase_01 AC 212 ms
75,596 KB
testcase_02 AC 1,463 ms
78,320 KB
testcase_03 AC 1,676 ms
78,544 KB
testcase_04 AC 1,493 ms
78,368 KB
testcase_05 AC 1,526 ms
78,284 KB
testcase_06 AC 1,182 ms
77,660 KB
testcase_07 AC 608 ms
77,184 KB
testcase_08 AC 1,375 ms
78,048 KB
testcase_09 AC 1,075 ms
77,632 KB
testcase_10 AC 1,478 ms
78,536 KB
testcase_11 AC 924 ms
77,608 KB
testcase_12 AC 1,337 ms
78,252 KB
testcase_13 AC 789 ms
77,352 KB
testcase_14 AC 56 ms
75,056 KB
testcase_15 AC 101 ms
77,176 KB
testcase_16 AC 106 ms
76,916 KB
testcase_17 AC 98 ms
76,612 KB
testcase_18 AC 103 ms
76,896 KB
testcase_19 AC 104 ms
77,264 KB
testcase_20 AC 38 ms
52,216 KB
testcase_21 AC 38 ms
53,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

def cmb(n, r):
    if r < 0 or r > n:
        return 0
    r = min(r, n-r)
    x = 1
    for i in range(n-r+1, n+1):
        x *= i
    y = 1
    for i in range(1, r+1):
        y *= i
    return x//y

q = int(input())
for _ in range(q):
    d, x, t = map(int, input().split())
    c = cmb(x+d-1, d-1)
    if c > t:
        print('ZETUBOU')
    else:
        print('AC')
0