結果

問題 No.250 atetubouのzetubou
ユーザー nanae
提出日時 2017-03-30 12:32:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 704 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-07-07 02:56:50
合計ジャッジ時間 5,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

inf = 10**15 + 1

def calc_comb(n, k, comb):
    if k > n - k:
        k = n - k

    if comb[n][k] > 0:
        return comb[n][k]

    if k == 0 or k == n:
        comb[n][k] = 1
        return comb[n][k]

    comb[n][k] = min(inf, calc_comb(n - 1, k - 1, comb) + calc_comb(n - 1, k, comb))
    return comb[n][k]

def solve():
    comb = [[0]*(3000 + 1) for i in range(3000 + 1)]
    inf = 10**15 + 1

    Q = int(stdin.readline())

    for q in range(Q):
        d, x, t = map(int, stdin.readline().split())
        c = calc_comb(x + d - 1, d - 1, comb)

        if c > t:
            print('ZETUBOU')
        else:
            print('AC')

if __name__ == '__main__':
    solve()
0