結果

問題 No.533 Mysterious Stairs
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-06-23 22:51:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 774 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 102,240 KB
最終ジャッジ日時 2024-10-04 07:47:04
合計ジャッジ時間 10,725 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
100,776 KB
testcase_01 AC 256 ms
102,064 KB
testcase_02 AC 261 ms
101,932 KB
testcase_03 AC 266 ms
101,988 KB
testcase_04 AC 267 ms
101,556 KB
testcase_05 AC 270 ms
100,960 KB
testcase_06 AC 260 ms
102,084 KB
testcase_07 AC 261 ms
102,064 KB
testcase_08 AC 258 ms
102,108 KB
testcase_09 AC 258 ms
101,280 KB
testcase_10 AC 260 ms
101,900 KB
testcase_11 AC 265 ms
102,140 KB
testcase_12 AC 264 ms
102,028 KB
testcase_13 AC 253 ms
101,724 KB
testcase_14 AC 258 ms
101,700 KB
testcase_15 AC 266 ms
101,676 KB
testcase_16 AC 259 ms
102,240 KB
testcase_17 AC 269 ms
101,852 KB
testcase_18 AC 271 ms
101,996 KB
testcase_19 AC 270 ms
101,860 KB
testcase_20 AC 287 ms
102,120 KB
testcase_21 AC 286 ms
101,908 KB
testcase_22 AC 299 ms
102,084 KB
testcase_23 AC 332 ms
102,100 KB
testcase_24 AC 322 ms
101,576 KB
testcase_25 AC 281 ms
102,028 KB
testcase_26 AC 305 ms
101,732 KB
testcase_27 AC 295 ms
101,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        long mod = (long)Math.pow(10,9)+7;
        long [][] num = new long [1000001][4];
        num[1][1] = 1;
        num[2][2] = 1;
        num[3][1] = 1;
        num[3][2] = 1;
        num[3][3] = 1;
        for(int i=4; i<=N; i++){
            num[i][1] = num[i-1][2]+num[i-1][3];
            num[i][2] = num[i-2][1]+num[i-2][3];
            num[i][3] = num[i-3][1]+num[i-3][2];
            for(int j=0; j<3; j++){
                num[i][j]%=mod;
            }
        }
        long ans=0;
        for(int i=1; i<=3; i++){
            ans+=num[N][i];
        }
        System.out.println(ans%mod);
    }
}
0