結果
問題 | No.533 Mysterious Stairs |
ユーザー | tetsu |
提出日時 | 2017-06-23 23:44:17 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 12 ms / 5,000 ms |
コード長 | 605 bytes |
コンパイル時間 | 506 ms |
コンパイル使用メモリ | 54,140 KB |
実行使用メモリ | 26,588 KB |
最終ジャッジ日時 | 2024-10-04 08:05:01 |
合計ジャッジ時間 | 1,408 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include <iostream> #include <stdlib.h> #define N 1000000 #define M 1000000007 using namespace std; int main(void) { static long step1[N]={0}; static long step2[N] = {0}; static long step3[N] = {0}; int n; cin >> n; step1[0] = 1; step2[0] = 0; step3[0] = 0; step1[1] = 0; step2[1] = 1; step3[1] = 0; step1[2] = 1; step2[2] = 1; step3[2] = 1; for(int i = 3; i < n; i++) { step1[i] = (step2[i-1] + step3[i-1])%M; step2[i] = (step1[i-2] + step3[i-2])%M; step3[i] = (step1[i-3] + step2[i-3])%M; } cout << ((step1[n-1] + step2[n-1] + step3[n-1])%M) << endl; return 0; }