結果

問題 No.336 門松列列
ユーザー cielciel
提出日時 2016-01-15 23:27:37
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-06-12 01:10:15
合計ジャッジ時間 3,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
77,824 KB
testcase_01 AC 67 ms
75,672 KB
testcase_02 AC 66 ms
75,520 KB
testcase_03 AC 65 ms
75,392 KB
testcase_04 AC 105 ms
77,756 KB
testcase_05 AC 68 ms
75,648 KB
testcase_06 AC 75 ms
77,824 KB
testcase_07 AC 83 ms
77,992 KB
testcase_08 AC 96 ms
77,568 KB
testcase_09 AC 109 ms
77,568 KB
testcase_10 AC 107 ms
78,464 KB
testcase_11 AC 107 ms
77,824 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%1000000007; 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])
0