結果

問題 No.314 ケンケンパ
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:41:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 3,378 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-11-22 12:25:39
合計ジャッジ時間 7,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
39,808 KB
testcase_01 AC 116 ms
39,680 KB
testcase_02 AC 128 ms
41,296 KB
testcase_03 AC 129 ms
41,328 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 130 ms
41,372 KB
testcase_07 AC 128 ms
41,388 KB
testcase_08 AC 128 ms
41,240 KB
testcase_09 AC 130 ms
41,024 KB
testcase_10 AC 130 ms
40,864 KB
testcase_11 AC 127 ms
41,068 KB
testcase_12 AC 130 ms
41,380 KB
testcase_13 AC 132 ms
41,480 KB
testcase_14 AC 129 ms
41,108 KB
testcase_15 AC 128 ms
41,236 KB
testcase_16 AC 132 ms
41,224 KB
testcase_17 AC 133 ms
41,488 KB
testcase_18 AC 137 ms
41,112 KB
testcase_19 AC 131 ms
40,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt();
		if(n < 3){
			System.out.println(n);
		}
		long t00 = 1, t01 = 1, t10 = 0, tmp, e = 1000000007;
		for(int i = 3; i <= n; i++){
			tmp = t00 + t10;
			t00 = t10;
			t10 = t01;
			t01 = tmp % e;
		}
		System.out.println((t00+t01+t10)%e);
	}
}
0