結果

問題 No.250 atetubouのzetubou
ユーザー convexineqconvexineq
提出日時 2020-12-11 06:16:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 77,836 KB
最終ジャッジ日時 2024-09-19 21:07:13
合計ジャッジ時間 3,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
77,352 KB
testcase_01 AC 64 ms
66,432 KB
testcase_02 AC 115 ms
77,160 KB
testcase_03 AC 111 ms
77,292 KB
testcase_04 AC 111 ms
77,312 KB
testcase_05 AC 115 ms
76,928 KB
testcase_06 AC 110 ms
77,180 KB
testcase_07 AC 96 ms
77,096 KB
testcase_08 AC 112 ms
77,184 KB
testcase_09 AC 110 ms
77,440 KB
testcase_10 AC 117 ms
77,056 KB
testcase_11 AC 106 ms
77,272 KB
testcase_12 AC 111 ms
77,088 KB
testcase_13 AC 101 ms
77,056 KB
testcase_14 AC 36 ms
52,480 KB
testcase_15 AC 135 ms
77,424 KB
testcase_16 AC 137 ms
77,836 KB
testcase_17 AC 140 ms
77,824 KB
testcase_18 AC 136 ms
76,672 KB
testcase_19 AC 135 ms
77,516 KB
testcase_20 AC 37 ms
52,224 KB
testcase_21 AC 34 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(a,x,t): #aCx <= T ?
    if x >= (a+1)//2: x = a-x
    r = 1
    for i in range(1,x+1):
        r *= a-i+1
        r //= i
        if r > t: return 0
    return r <= t

q = int(input())
for _ in range(q):
    d,x,t = map(int,input().split())
    a = d+x-1
    print("AC" if check(a,x,t) else "ZETUBOU")
0