結果

問題 No.533 Mysterious Stairs
ユーザー bolabola110bolabola110
提出日時 2017-06-26 14:11:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 3,857 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 114,012 KB
最終ジャッジ日時 2024-10-04 09:38:01
合計ジャッジ時間 8,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
112,600 KB
testcase_01 AC 147 ms
112,064 KB
testcase_02 AC 149 ms
112,660 KB
testcase_03 AC 157 ms
113,804 KB
testcase_04 AC 158 ms
113,256 KB
testcase_05 AC 158 ms
113,700 KB
testcase_06 AC 162 ms
113,896 KB
testcase_07 AC 167 ms
113,972 KB
testcase_08 AC 161 ms
113,540 KB
testcase_09 AC 155 ms
112,656 KB
testcase_10 AC 156 ms
112,736 KB
testcase_11 AC 168 ms
113,780 KB
testcase_12 AC 167 ms
113,568 KB
testcase_13 AC 163 ms
114,012 KB
testcase_14 AC 161 ms
113,560 KB
testcase_15 AC 157 ms
112,352 KB
testcase_16 AC 166 ms
113,776 KB
testcase_17 AC 152 ms
112,360 KB
testcase_18 AC 151 ms
112,532 KB
testcase_19 AC 165 ms
113,524 KB
testcase_20 AC 175 ms
113,828 KB
testcase_21 AC 186 ms
113,552 KB
testcase_22 AC 183 ms
113,868 KB
testcase_23 AC 213 ms
113,992 KB
testcase_24 AC 196 ms
112,932 KB
testcase_25 AC 177 ms
113,908 KB
testcase_26 AC 201 ms
113,604 KB
testcase_27 AC 184 ms
113,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class ex2{
   public static void main(String args[]){
     Scanner inp=new Scanner(System.in);
     int n=inp.nextInt();
     long[][] a=new long[4][2000000];
     a[1][1]=1;
     a[2][2]=1;
     a[3][3]=1;
     a[2][3]=1;
     a[1][3]=1;
     long mod=1000000007;
     if (n>=4)
     for(int i=4;i<=n;i++){
       a[1][i]=(a[2][i-1]+a[3][i-1])%mod;
       a[2][i]=(a[1][i-2]+a[3][i-2])%mod;
       a[3][i]=(a[2][i-3]+a[1][i-3])%mod;
     }
     System.out.println((((a[1][n]+a[2][n])%mod)+a[3][n])%mod);
   }
}
0