結果

問題 No.314 ケンケンパ
ユーザー hogeover30hogeover30
提出日時 2015-12-07 06:12:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 492 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 23,680 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-09-14 18:05:40
合計ジャッジ時間 955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
24,448 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 15 ms
12,800 KB
testcase_19 AC 31 ms
24,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:14: warning: format ‘%u’ expects argument of type ‘unsigned int’, but argument 2 has type ‘long unsigned int’ [-Wformat=]
   18 |     printf("%u\n", res%mod);
      |             ~^     ~~~~~~~
      |              |        |
      |              |        long unsigned int
      |              unsigned int
      |             %lu
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
const unsigned long mod=1e9+7;
unsigned long dp[1000010][3];

int main()
{
    int i, n;
    scanf("%d", &n);
    dp[0][0]=1;
    for(i=1;i<=n;++i) {
        if ((dp[i][1]+=dp[i-1][0])>=mod) dp[i][1]-=mod;
        if ((dp[i][2]+=dp[i-1][1])>=mod) dp[i][2]-=mod;
        if ((dp[i][0]+=dp[i-1][1])>=mod) dp[i][0]-=mod;
        if ((dp[i][0]+=dp[i-1][2])>=mod) dp[i][0]-=mod;
    }
    unsigned long res=0;
    for(i=0;i<3;++i) res+=dp[n][i];
    printf("%u\n", res%mod);
}

0