結果

問題 No.314 ケンケンパ
ユーザー rpy3cpprpy3cpp
提出日時 2015-12-07 23:42:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 173 ms / 1,000 ms
コード長 215 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-14 18:32:38
合計ジャッジ時間 1,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N):
    if N == 1:
        return 1
    a, b, c = 1, 1, 0
    mod = 10**9 + 7
    for n in range(N - 2):
        a, b, c = c, (a + c) % mod, b
    return (a + b + c) % mod

N = int(input())
print(solve(N))
0