結果

問題 No.557 点対称
ユーザー 37zigen37zigen
提出日時 2017-08-12 01:44:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 2,582 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-10-12 22:53:04
合計ジャッジ時間 7,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,024 KB
testcase_01 AC 124 ms
54,072 KB
testcase_02 AC 113 ms
53,016 KB
testcase_03 AC 123 ms
54,040 KB
testcase_04 AC 124 ms
53,956 KB
testcase_05 AC 130 ms
54,152 KB
testcase_06 AC 128 ms
54,232 KB
testcase_07 AC 122 ms
53,856 KB
testcase_08 AC 124 ms
54,160 KB
testcase_09 AC 111 ms
52,796 KB
testcase_10 AC 115 ms
53,292 KB
testcase_11 AC 110 ms
52,860 KB
testcase_12 AC 113 ms
53,004 KB
testcase_13 AC 123 ms
53,912 KB
testcase_14 AC 125 ms
54,080 KB
testcase_15 AC 124 ms
53,836 KB
testcase_16 AC 125 ms
54,168 KB
testcase_17 AC 129 ms
54,128 KB
testcase_18 AC 122 ms
54,200 KB
testcase_19 AC 131 ms
54,120 KB
testcase_20 AC 128 ms
53,920 KB
testcase_21 AC 126 ms
54,112 KB
testcase_22 AC 121 ms
54,016 KB
testcase_23 AC 122 ms
53,780 KB
testcase_24 AC 125 ms
54,036 KB
testcase_25 AC 127 ms
54,296 KB
testcase_26 AC 129 ms
53,752 KB
testcase_27 AC 122 ms
53,952 KB
testcase_28 AC 125 ms
53,972 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	final long MODULO = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		if (n == 1) {
			System.out.println(3);
			return;
		}
		if (n % 2 == 0) {
			System.out.println(4 * pow(5, n / 2 - 1) % MODULO);
		} else {
			System.out.println(4 * pow(5, n / 2 - 1) * 3 % MODULO);
		}
	}

	long pow(long a, long n) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = (a * a) % MODULO) {
			if (n % 2 == 1) {
				ret = ret * a % MODULO;
			}
		}
		return ret;
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) {
		new Main().run();
	}
}
0