結果

問題 No.557 点対称
ユーザー 37zigen37zigen
提出日時 2017-08-12 01:47:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-10-12 22:53:56
合計ジャッジ時間 6,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,844 KB
testcase_01 AC 124 ms
53,980 KB
testcase_02 AC 126 ms
54,216 KB
testcase_03 AC 129 ms
54,096 KB
testcase_04 AC 112 ms
52,992 KB
testcase_05 AC 118 ms
54,024 KB
testcase_06 AC 127 ms
53,840 KB
testcase_07 AC 123 ms
53,796 KB
testcase_08 AC 121 ms
53,828 KB
testcase_09 AC 122 ms
54,028 KB
testcase_10 AC 126 ms
53,760 KB
testcase_11 AC 125 ms
54,136 KB
testcase_12 AC 109 ms
53,012 KB
testcase_13 AC 124 ms
53,752 KB
testcase_14 AC 123 ms
53,988 KB
testcase_15 AC 124 ms
54,280 KB
testcase_16 AC 120 ms
53,892 KB
testcase_17 AC 124 ms
53,912 KB
testcase_18 AC 120 ms
54,044 KB
testcase_19 AC 110 ms
53,092 KB
testcase_20 AC 126 ms
54,156 KB
testcase_21 AC 121 ms
54,468 KB
testcase_22 AC 120 ms
53,916 KB
testcase_23 AC 118 ms
53,704 KB
testcase_24 AC 124 ms
53,756 KB
testcase_25 AC 128 ms
54,188 KB
testcase_26 AC 122 ms
53,980 KB
testcase_27 AC 109 ms
53,128 KB
testcase_28 AC 123 ms
54,056 KB
testcase_29 AC 123 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

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(2);
			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