結果

問題 No.250 atetubouのzetubou
コンテスト
ユーザー nanae
提出日時 2017-03-30 12:32:13
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
RE  
実行時間 -
コード長 704 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 450 ms
コンパイル使用メモリ 20,576 KB
実行使用メモリ 91,828 KB
最終ジャッジ日時 2026-03-28 17:09:36
合計ジャッジ時間 14,238 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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