結果

問題 No.250 atetubouのzetubou
ユーザー yomo3yomo3
提出日時 2020-03-21 02:06:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 817 ms / 5,000 ms
コード長 662 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 79,200 KB
最終ジャッジ日時 2024-05-09 13:38:47
合計ジャッジ時間 11,794 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
77,764 KB
testcase_01 AC 169 ms
77,176 KB
testcase_02 AC 776 ms
78,776 KB
testcase_03 AC 817 ms
79,200 KB
testcase_04 AC 720 ms
77,468 KB
testcase_05 AC 743 ms
77,932 KB
testcase_06 AC 605 ms
77,992 KB
testcase_07 AC 365 ms
78,208 KB
testcase_08 AC 682 ms
77,568 KB
testcase_09 AC 571 ms
78,732 KB
testcase_10 AC 752 ms
77,568 KB
testcase_11 AC 486 ms
77,696 KB
testcase_12 AC 669 ms
77,696 KB
testcase_13 AC 443 ms
78,208 KB
testcase_14 AC 64 ms
68,224 KB
testcase_15 AC 193 ms
77,440 KB
testcase_16 AC 192 ms
78,080 KB
testcase_17 AC 256 ms
78,428 KB
testcase_18 AC 219 ms
77,356 KB
testcase_19 AC 200 ms
77,380 KB
testcase_20 AC 44 ms
54,784 KB
testcase_21 AC 43 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

def comb(n, r):
    if n < 0 or r < 0 or r > n:
        return 0
    r = min(r, n - r)
    if r == 0: return 1

    numer = [n - r + i + 1 for i in range(r)]
    denom = [i + 1 for i in range(r)]

    for i in range(1, r):
        divisor = denom[i]
        if divisor > 1:
            offset = (n - r) % (i + 1)
            for j in range(i, r, i+1):
                numer[j - offset] //= divisor
                denom[j] //= divisor

    return reduce(lambda x, y: x*y if y > 1 else x, numer)


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