結果

問題 No.557 点対称
ユーザー uafr_csuafr_cs
提出日時 2017-11-01 17:29:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 76,448 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-11-22 14:37:10
合計ジャッジ時間 7,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,380 KB
testcase_01 AC 129 ms
41,084 KB
testcase_02 AC 134 ms
41,280 KB
testcase_03 AC 131 ms
41,112 KB
testcase_04 AC 134 ms
41,260 KB
testcase_05 AC 135 ms
41,008 KB
testcase_06 AC 133 ms
40,952 KB
testcase_07 AC 134 ms
41,192 KB
testcase_08 AC 134 ms
41,352 KB
testcase_09 AC 118 ms
40,060 KB
testcase_10 AC 132 ms
40,980 KB
testcase_11 AC 135 ms
41,120 KB
testcase_12 AC 120 ms
40,092 KB
testcase_13 AC 132 ms
40,844 KB
testcase_14 AC 160 ms
40,956 KB
testcase_15 AC 130 ms
41,072 KB
testcase_16 AC 132 ms
41,076 KB
testcase_17 AC 132 ms
41,240 KB
testcase_18 AC 134 ms
41,060 KB
testcase_19 AC 118 ms
40,252 KB
testcase_20 AC 135 ms
41,204 KB
testcase_21 AC 132 ms
40,948 KB
testcase_22 AC 130 ms
40,944 KB
testcase_23 AC 132 ms
41,028 KB
testcase_24 AC 132 ms
41,280 KB
testcase_25 AC 131 ms
41,156 KB
testcase_26 AC 132 ms
40,952 KB
testcase_27 AC 132 ms
40,948 KB
testcase_28 AC 130 ms
41,244 KB
testcase_29 AC 129 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	
	public static long MOD = 1000000007;
	
	public static long mod_pow(long a, long x){
		if(x == 0){ return 1; }
		else if(x == 1){ return a; }
		else if(x % 2 == 1){ return (mod_pow(a, x - 1) * a) % MOD; }
		else{ 
			final long t = mod_pow(a, x / 2);
			return (t * t) % MOD;
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		if(N == 1){
			System.out.println(2);
		}else if(N == 2){
			System.out.println(4);
		}else if(N % 2 == 1){
			final long run = (N - 3) / 2;
			final long x = mod_pow(5, run);
			
			System.out.println((3 * x * 4) % MOD);
		}else{
			final long run = (N - 4) / 2;
			final long x = mod_pow(5, run);
			
			System.out.println((5 * x * 4) % MOD);
		}
	}
}
0