結果
問題 | No.314 ケンケンパ |
ユーザー | fjafjafja |
提出日時 | 2017-09-19 12:00:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 3,419 ms |
コンパイル使用メモリ | 75,168 KB |
実行使用メモリ | 41,460 KB |
最終ジャッジ日時 | 2024-11-08 05:32:00 |
合計ジャッジ時間 | 7,240 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 159 ms
41,260 KB |
testcase_01 | AC | 134 ms
40,996 KB |
testcase_02 | AC | 118 ms
40,148 KB |
testcase_03 | WA | - |
testcase_04 | AC | 132 ms
40,936 KB |
testcase_05 | AC | 138 ms
41,248 KB |
testcase_06 | AC | 121 ms
39,992 KB |
testcase_07 | AC | 135 ms
41,256 KB |
testcase_08 | AC | 136 ms
41,088 KB |
testcase_09 | WA | - |
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 | AC | 150 ms
41,172 KB |
testcase_19 | WA | - |
ソースコード
import java.util.Scanner; public class N314 { static int cnt=0; static int n; public static void main(String[] args) { Scanner sc=new Scanner(System.in); n=sc.nextInt(); int length=2; int[] state=new int[3]; int[] buf=new int[3]; int beki=(int)Math.pow(10, 9)+7; state[0]=1;state[1]=1;state[2]=0; if(n>2) { while(length!=n) { for(int i=0;i<3;i++) { buf[i]=state[i]; } state[0]=buf[2]%beki; state[1]=(buf[0]+buf[2])%beki; state[2]=buf[1]%beki; length++; } for(int i=0;i<3;i++) { cnt+=state[i]; } } else {cnt=n;} System.out.println(cnt); } }