結果
問題 | No.533 Mysterious Stairs |
ユーザー | iqueue02 |
提出日時 | 2019-11-08 16:56:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 809 bytes |
コンパイル時間 | 1,520 ms |
コンパイル使用メモリ | 166,980 KB |
実行使用メモリ | 15,232 KB |
最終ジャッジ日時 | 2024-09-15 00:51:39 |
合計ジャッジ時間 | 2,644 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 24 ms
15,104 KB |
testcase_24 | AC | 25 ms
15,232 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 8 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < (n);i++) #define sz(x) int(x.size()) typedef long long ll; typedef pair<int,int> P; const int mod = 1e9+7; int dp[1000010][3]; int main(){ int n; cin >> n; dp[0][0] = 1; dp[0][1] = 1; dp[0][2] = 1; rep(i,n) { rep(j,3) { if (j == 0) { if (i+2<=n) (dp[i+2][1] += dp[i][j]) %= mod; if (i+3<=n) (dp[i+3][2] += dp[i][j]) %= mod; } if (j == 1) { if (i+1<=n) (dp[i+1][0] += dp[i][j]) %= mod; if (i+3<=n) (dp[i+3][2] += dp[i][j]) %= mod; } if (j == 2) { if (i+1<=n) (dp[i+1][0] += dp[i][j]) %= mod; if (i+2<=n) (dp[i+2][1] += dp[i][j]) %= mod; } } } cout << (dp[n][0] + dp[n][1] + dp[n][2]) % mod / 2 << endl; return 0; }