結果

問題 No.250 atetubouのzetubou
ユーザー しらっ亭しらっ亭
提出日時 2015-09-11 04:38:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,114 ms / 5,000 ms
コード長 527 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 486,272 KB
最終ジャッジ日時 2024-07-19 05:15:26
合計ジャッジ時間 24,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,035 ms
486,144 KB
testcase_01 AC 1,020 ms
486,016 KB
testcase_02 AC 1,037 ms
486,144 KB
testcase_03 AC 1,044 ms
486,016 KB
testcase_04 AC 1,114 ms
486,144 KB
testcase_05 AC 1,065 ms
486,016 KB
testcase_06 AC 1,017 ms
486,144 KB
testcase_07 AC 1,028 ms
486,144 KB
testcase_08 AC 1,028 ms
486,016 KB
testcase_09 AC 1,031 ms
486,016 KB
testcase_10 AC 1,020 ms
486,016 KB
testcase_11 AC 997 ms
486,016 KB
testcase_12 AC 1,035 ms
486,144 KB
testcase_13 AC 1,010 ms
486,144 KB
testcase_14 AC 975 ms
486,144 KB
testcase_15 AC 1,043 ms
486,016 KB
testcase_16 AC 1,025 ms
486,016 KB
testcase_17 AC 1,036 ms
486,016 KB
testcase_18 AC 1,063 ms
486,144 KB
testcase_19 AC 1,067 ms
486,272 KB
testcase_20 AC 982 ms
485,888 KB
testcase_21 AC 968 ms
486,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    dp = [[0 for x in range(1501)] for d in range(1501)]
    for d in range(1, 1501):
        dp1 = dp[d - 1]
        s = 0
        for x in range(1501):
            s += dp1[x]
            if d == 1:
                dp[d][x] = 1
            elif x == 0:
                dp[d][x] = 1
            else:
                dp[d][x] += s

    Q = int(input())
    for _ in range(Q):
        d, x, t = map(int, input().split())
        print('AC' if dp[d][x] <= t else 'ZETUBOU')


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