結果
問題 | No.314 ケンケンパ |
ユーザー | shinwisteria |
提出日時 | 2017-04-01 17:08:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 584 bytes |
コンパイル時間 | 3,054 ms |
コンパイル使用メモリ | 74,256 KB |
実行使用メモリ | 101,968 KB |
最終ジャッジ日時 | 2024-07-07 18:54:20 |
合計ジャッジ時間 | 6,978 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 122 ms
41,192 KB |
testcase_02 | AC | 121 ms
41,116 KB |
testcase_03 | AC | 124 ms
41,288 KB |
testcase_04 | AC | 120 ms
41,344 KB |
testcase_05 | AC | 123 ms
41,140 KB |
testcase_06 | AC | 121 ms
40,908 KB |
testcase_07 | AC | 120 ms
40,952 KB |
testcase_08 | AC | 109 ms
40,296 KB |
testcase_09 | AC | 121 ms
41,116 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
import java.util.Scanner; public class Kenkenpa { public static void main(String[] args) { // TODO 自動生成されたメソッド・スタブ Scanner s = new Scanner(System.in); int N = s.nextInt(); s.close(); long[][] root = new long[N+1][3]; //[i][0]がケン(1)、[i][1]がケン(2)、[i][2]がパ root[1][0] = 1; int t = (int)Math.pow(10, 9) + 7; for(int i = 2;i <= N;i++){ root[i][0] = root[i-1][2]; root[i][1] = root[i-1][0]; root[i][2] = root[i-1][0] + root[i-1][1]; } System.out.println((root[N][0] + root[N][1] + root[N][2]) % t); } }