結果

問題 No.250 atetubouのzetubou
ユーザー KazunKazun
提出日時 2021-06-18 03:47:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-06-11 23:54:11
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
77,056 KB
testcase_01 AC 70 ms
76,288 KB
testcase_02 AC 154 ms
76,928 KB
testcase_03 AC 168 ms
77,312 KB
testcase_04 AC 152 ms
76,800 KB
testcase_05 AC 154 ms
76,544 KB
testcase_06 AC 139 ms
76,992 KB
testcase_07 AC 109 ms
76,896 KB
testcase_08 AC 159 ms
76,972 KB
testcase_09 AC 142 ms
76,576 KB
testcase_10 AC 162 ms
76,928 KB
testcase_11 AC 130 ms
76,544 KB
testcase_12 AC 151 ms
76,668 KB
testcase_13 AC 120 ms
76,768 KB
testcase_14 AC 38 ms
58,112 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 34 ms
52,352 KB
testcase_21 AC 33 ms
52,096 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