結果

問題 No.336 門松列列
ユーザー cielciel
提出日時 2016-01-15 23:25:17
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,305 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 272,124 KB
最終ジャッジ日時 2024-06-12 01:10:34
合計ジャッジ時間 9,627 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 909 ms
269,724 KB
testcase_01 AC 78 ms
75,528 KB
testcase_02 AC 78 ms
75,392 KB
testcase_03 AC 79 ms
75,648 KB
testcase_04 AC 1,305 ms
271,904 KB
testcase_05 AC 77 ms
75,524 KB
testcase_06 AC 116 ms
80,016 KB
testcase_07 AC 277 ms
104,948 KB
testcase_08 AC 606 ms
195,864 KB
testcase_09 AC 1,164 ms
269,468 KB
testcase_10 AC 1,197 ms
269,448 KB
testcase_11 AC 1,249 ms
272,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from __future__ import print_function
import sys
if sys.version_info[0]>=3: raw_input=input

def A001250_list(n) :
    R = [1]; A = {-1:0, 0:2}; k = 0; e = 1
    for i in range(n+1):
        Am = 0; A[k + e] = 0; e = -e
        for j in range(i+1): Am += A[k]; A[k] = Am; k += e
        if i > 1 : R.append(A[-i//2] if i%2 == 0 else A[i//2])
    return R

n=int(raw_input())
print(0 if n<3 else A001250_list(n)[-1]%1000000007)
0