結果

問題 No.336 門松列列
ユーザー maspymaspy
提出日時 2020-05-05 16:01:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,268 KB
最終ジャッジ日時 2024-06-12 01:15:15
合計ジャッジ時間 9,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
43,748 KB
testcase_01 AC 484 ms
44,268 KB
testcase_02 AC 466 ms
44,260 KB
testcase_03 AC 463 ms
43,620 KB
testcase_04 AC 495 ms
43,996 KB
testcase_05 AC 458 ms
43,748 KB
testcase_06 AC 461 ms
43,868 KB
testcase_07 AC 483 ms
43,620 KB
testcase_08 AC 491 ms
43,620 KB
testcase_09 AC 510 ms
43,740 KB
testcase_10 AC 503 ms
43,624 KB
testcase_11 AC 510 ms
43,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

# N log N があるが N^2 で

MOD = 10**9 + 7

N = int(read())

dp = np.array([1], np.int64)
for n in range(2, N + 1):
    newdp = np.zeros(n, np.int64)
    if n & 1:
        newdp[:-1] = np.cumsum(dp[::-1])[::-1]
    else:
        newdp[1:] = np.cumsum(dp)
    dp = newdp % MOD

x = 2 * dp.sum() % MOD
if N <= 2:
    x = 0
print(x)
0