結果

問題 No.314 ケンケンパ
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 21:42:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 440 bytes
コンパイル時間 3,589 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-11-22 12:25:55
合計ジャッジ時間 7,045 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,452 KB
testcase_01 AC 131 ms
40,980 KB
testcase_02 AC 130 ms
41,584 KB
testcase_03 AC 131 ms
41,048 KB
testcase_04 AC 134 ms
41,248 KB
testcase_05 AC 132 ms
40,984 KB
testcase_06 AC 120 ms
40,204 KB
testcase_07 AC 132 ms
41,068 KB
testcase_08 AC 129 ms
41,060 KB
testcase_09 AC 133 ms
41,052 KB
testcase_10 AC 133 ms
41,184 KB
testcase_11 AC 136 ms
41,516 KB
testcase_12 AC 135 ms
41,152 KB
testcase_13 AC 133 ms
41,444 KB
testcase_14 AC 132 ms
41,272 KB
testcase_15 AC 117 ms
39,848 KB
testcase_16 AC 134 ms
41,456 KB
testcase_17 AC 136 ms
41,040 KB
testcase_18 AC 144 ms
41,332 KB
testcase_19 AC 148 ms
41,400 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);
                        return;
		}
		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