結果

問題 No.250 atetubouのzetubou
ユーザー nanaenanae
提出日時 2017-03-30 12:08:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,996 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-07-07 02:56:35
合計ジャッジ時間 44,223 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,898 ms
82,560 KB
testcase_01 AC 1,813 ms
82,560 KB
testcase_02 AC 1,903 ms
82,560 KB
testcase_03 AC 1,924 ms
82,560 KB
testcase_04 AC 1,900 ms
82,560 KB
testcase_05 AC 1,868 ms
82,560 KB
testcase_06 AC 1,852 ms
82,560 KB
testcase_07 AC 1,826 ms
82,560 KB
testcase_08 AC 1,894 ms
82,560 KB
testcase_09 AC 1,871 ms
82,560 KB
testcase_10 AC 1,996 ms
82,560 KB
testcase_11 AC 1,903 ms
82,560 KB
testcase_12 AC 1,870 ms
82,560 KB
testcase_13 AC 1,878 ms
82,432 KB
testcase_14 AC 1,861 ms
82,560 KB
testcase_15 AC 1,886 ms
82,560 KB
testcase_16 AC 1,928 ms
82,560 KB
testcase_17 AC 1,863 ms
82,560 KB
testcase_18 AC 1,888 ms
82,560 KB
testcase_19 AC 1,956 ms
82,560 KB
testcase_20 AC 1,850 ms
82,560 KB
testcase_21 AC 1,882 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

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

    for n in range(3000 + 1):
        comb[n][0] = comb[n][n] = 1

        for k in range(1, n):
            comb[n][k] = min(inf, comb[n - 1][k] + comb[n - 1][k - 1])

    Q = int(stdin.readline())

    for q in range(Q):
        d, x, t = map(int, stdin.readline().split())

        if comb[d + x - 1][d - 1] > t:
            print('ZETUBOU')
        else:
            print('AC')

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