結果

問題 No.314 ケンケンパ
ユーザー tsunabittsunabit
提出日時 2020-03-29 15:31:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 1,000 ms
コード長 479 bytes
コンパイル時間 4,194 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 56,588 KB
最終ジャッジ日時 2024-06-10 18:25:07
合計ジャッジ時間 7,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
55,372 KB
testcase_01 AC 129 ms
54,160 KB
testcase_02 AC 124 ms
52,944 KB
testcase_03 AC 125 ms
53,932 KB
testcase_04 AC 128 ms
54,008 KB
testcase_05 AC 128 ms
54,280 KB
testcase_06 AC 124 ms
54,068 KB
testcase_07 AC 125 ms
53,784 KB
testcase_08 AC 126 ms
53,712 KB
testcase_09 AC 116 ms
53,104 KB
testcase_10 AC 130 ms
53,788 KB
testcase_11 AC 125 ms
53,892 KB
testcase_12 AC 124 ms
53,800 KB
testcase_13 AC 123 ms
54,056 KB
testcase_14 AC 113 ms
53,128 KB
testcase_15 AC 114 ms
52,908 KB
testcase_16 AC 128 ms
53,996 KB
testcase_17 AC 140 ms
56,588 KB
testcase_18 AC 154 ms
56,496 KB
testcase_19 AC 169 ms
56,520 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