結果

問題 No.314 ケンケンパ
ユーザー tsunabittsunabit
提出日時 2020-03-29 15:31:07
言語 Java
(openjdk 23)
結果
AC  
実行時間 163 ms / 1,000 ms
コード長 479 bytes
コンパイル時間 3,920 ms
コンパイル使用メモリ 76,268 KB
実行使用メモリ 56,940 KB
最終ジャッジ日時 2025-01-02 13:40:01
合計ジャッジ時間 7,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
56,880 KB
testcase_01 AC 116 ms
54,404 KB
testcase_02 AC 113 ms
54,152 KB
testcase_03 AC 121 ms
54,140 KB
testcase_04 AC 116 ms
54,128 KB
testcase_05 AC 114 ms
54,364 KB
testcase_06 AC 110 ms
54,272 KB
testcase_07 AC 107 ms
54,112 KB
testcase_08 AC 110 ms
54,252 KB
testcase_09 AC 111 ms
54,356 KB
testcase_10 AC 120 ms
54,356 KB
testcase_11 AC 116 ms
54,364 KB
testcase_12 AC 113 ms
54,320 KB
testcase_13 AC 110 ms
54,172 KB
testcase_14 AC 115 ms
54,172 KB
testcase_15 AC 122 ms
54,352 KB
testcase_16 AC 124 ms
54,272 KB
testcase_17 AC 130 ms
56,808 KB
testcase_18 AC 146 ms
56,940 KB
testcase_19 AC 163 ms
56,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No314 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long m = 1000000007;
		long a[] = {1, 0, 0}; // kp, pk, kk
		for(int i = 0; i < n; i++) {
			long t[] = {0, 0, 0};
			t[0] += (a[1] + a[2]) % m;
			t[1] += a[0] % m;
			t[2] += a[1] % m;
			a = t;
		}
		long ans = 0;
		for(int i = 0; i < 3; i++) ans += a[i];
		System.out.println(ans%m);
	}
}
0