結果
問題 | No.314 ケンケンパ |
ユーザー | fjafjafja |
提出日時 | 2017-09-19 12:13:02 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 181 ms / 1,000 ms |
コード長 | 626 bytes |
コンパイル時間 | 3,531 ms |
コンパイル使用メモリ | 75,384 KB |
実行使用メモリ | 41,472 KB |
最終ジャッジ日時 | 2024-11-08 05:32:50 |
合計ジャッジ時間 | 7,220 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 180 ms
41,140 KB |
testcase_01 | AC | 132 ms
41,132 KB |
testcase_02 | AC | 131 ms
41,200 KB |
testcase_03 | AC | 132 ms
41,272 KB |
testcase_04 | AC | 129 ms
41,360 KB |
testcase_05 | AC | 129 ms
41,180 KB |
testcase_06 | AC | 118 ms
40,120 KB |
testcase_07 | AC | 130 ms
41,296 KB |
testcase_08 | AC | 135 ms
41,224 KB |
testcase_09 | AC | 134 ms
41,332 KB |
testcase_10 | AC | 136 ms
41,164 KB |
testcase_11 | AC | 133 ms
41,416 KB |
testcase_12 | AC | 131 ms
41,168 KB |
testcase_13 | AC | 132 ms
41,068 KB |
testcase_14 | AC | 132 ms
41,280 KB |
testcase_15 | AC | 132 ms
41,372 KB |
testcase_16 | AC | 138 ms
41,324 KB |
testcase_17 | AC | 147 ms
41,240 KB |
testcase_18 | AC | 148 ms
40,264 KB |
testcase_19 | AC | 181 ms
41,472 KB |
ソースコード
import java.util.Scanner; public class N314 { static long cnt=0; static int n; public static void main(String[] args) { Scanner sc=new Scanner(System.in); n=sc.nextInt(); int length=2; long[] state=new long[3]; long[] buf=new long[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]%beki; } state[0]=buf[2]; state[1]=(buf[0]+buf[2]); state[2]=buf[1]; length++; } for(int i=0;i<3;i++) { cnt+=state[i]; } } else {cnt=n;} System.out.println(cnt%beki); } }