結果

問題 No.250 atetubouのzetubou
ユーザー 👑 KazunKazun
提出日時 2021-06-18 03:27:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-11 22:00:07
合計ジャッジ時間 3,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
76,360 KB
testcase_01 AC 75 ms
76,160 KB
testcase_02 AC 134 ms
76,672 KB
testcase_03 AC 145 ms
76,800 KB
testcase_04 AC 135 ms
76,420 KB
testcase_05 AC 137 ms
76,620 KB
testcase_06 AC 131 ms
76,460 KB
testcase_07 AC 108 ms
76,640 KB
testcase_08 AC 133 ms
77,056 KB
testcase_09 AC 126 ms
76,544 KB
testcase_10 AC 140 ms
76,968 KB
testcase_11 AC 119 ms
76,672 KB
testcase_12 AC 134 ms
76,424 KB
testcase_13 AC 116 ms
76,460 KB
testcase_14 AC 40 ms
57,984 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
51,712 KB
testcase_21 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def nCr(n,r,T):
    r=min(r,n-r)
    a=b=1
    while r:
        a*=n; b*=r
        n-=1; r-=1

        if a>b*T:
            return False
    return True

Q=int(input())

for _ in range(Q):
    D,X,T=map(int,input().split())
    print("AC" if nCr(D+X-1,D-1,T) else "ZETUBOU")
0