結果

問題 No.557 点対称
ユーザー GrenacheGrenache
提出日時 2017-08-11 23:34:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 6,130 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-10-12 22:03:46
合計ジャッジ時間 8,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder557 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;

		long n = sc.nextLong();

		if (n == 1) {
			pr.println(2);
		} else if (n % 2 == 0) {
			pr.println(modPow(5, n / 2 - 1, MOD) * 4 % MOD);
		} else {
			pr.println(3 * modPow(5, (n - 1) / 2 - 1, MOD) % MOD * 4 % MOD);
		}
	}

	private static long modPow(long a, long n, int MOD) {
		long loop = n;
		long ret = 1;
		long x = a;
		while (loop > 0) {
			if (loop % 2 == 1) {
				ret = ret * x % MOD;
			}
			x = x * x % MOD;
			loop /= 2;
		}

		return ret;
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0