結果

問題 No.250 atetubouのzetubou
ユーザー 👑 rin204rin204
提出日時 2022-01-20 07:24:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,965 ms / 5,000 ms
コード長 301 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-11-23 14:20:36
合計ジャッジ時間 42,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,289 ms
76,288 KB
testcase_01 AC 451 ms
75,648 KB
testcase_02 AC 3,505 ms
76,544 KB
testcase_03 AC 3,965 ms
77,440 KB
testcase_04 AC 3,474 ms
76,928 KB
testcase_05 AC 3,585 ms
76,544 KB
testcase_06 AC 2,791 ms
76,544 KB
testcase_07 AC 1,380 ms
76,928 KB
testcase_08 AC 3,277 ms
76,544 KB
testcase_09 AC 2,528 ms
76,800 KB
testcase_10 AC 3,549 ms
76,416 KB
testcase_11 AC 2,182 ms
76,672 KB
testcase_12 AC 3,219 ms
76,416 KB
testcase_13 AC 1,822 ms
76,416 KB
testcase_14 AC 69 ms
66,688 KB
testcase_15 AC 137 ms
76,928 KB
testcase_16 AC 141 ms
77,440 KB
testcase_17 AC 141 ms
77,184 KB
testcase_18 AC 141 ms
76,928 KB
testcase_19 AC 147 ms
77,184 KB
testcase_20 AC 40 ms
51,712 KB
testcase_21 AC 42 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    d, x, t = map(int, input().split())
    n = x + d - 1
    r = min(x, d - 1)
    ans = 1
    for i in range(1, r + 1):
        ans *= n - i + 1
        ans //= i
    if ans > t:
        print("ZETUBOU")
        return
    print("AC")
    
    
for _ in range(int(input())):
    solve()
0