結果
問題 | No.314 ケンケンパ |
ユーザー | mikhail |
提出日時 | 2019-12-05 11:31:58 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 633 bytes |
コンパイル時間 | 2,252 ms |
コンパイル使用メモリ | 74,828 KB |
実行使用メモリ | 970,864 KB |
最終ジャッジ日時 | 2024-05-09 22:13:48 |
合計ジャッジ時間 | 6,662 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import java.util.Scanner; import java.math.BigInteger; public class Main{ public static void main(String[] args){ Scanner scan = new Scanner(System.in); // input final int NUM = scan.nextInt(); BigInteger[] kenpa = new BigInteger[NUM+1]; // search for(int i = 1; i <= NUM; i++){ if(i == 1){ kenpa[1] = BigInteger.valueOf(1); } else if(i == 2){ kenpa[2] = BigInteger.valueOf(2); } else if(i == 3){ kenpa[3] = BigInteger.valueOf(2); } else { kenpa[i] = kenpa[i-2].add(kenpa[i-3]); } } // answer System.out.println(kenpa[NUM].mod(BigInteger.valueOf(1000000007))); } }