結果

問題 No.336 門松列列
ユーザー maspymaspy
提出日時 2020-05-05 16:01:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 444 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,580 KB
最終ジャッジ日時 2024-06-26 11:23:28
合計ジャッジ時間 11,202 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 601 ms
44,316 KB
testcase_01 WA -
testcase_02 AC 530 ms
44,192 KB
testcase_03 AC 522 ms
43,948 KB
testcase_04 AC 567 ms
43,936 KB
testcase_05 WA -
testcase_06 AC 537 ms
43,936 KB
testcase_07 AC 544 ms
44,200 KB
testcase_08 AC 554 ms
43,928 KB
testcase_09 AC 568 ms
43,944 KB
testcase_10 AC 564 ms
44,192 KB
testcase_11 AC 568 ms
43,936 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

print(2 * dp.sum() % MOD)
0