結果

問題 No.557 点対称
ユーザー fal_rndfal_rnd
提出日時 2017-08-11 23:35:49
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 806 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 81,140 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-10-12 22:04:27
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,812 KB
testcase_01 RE -
testcase_02 AC 128 ms
53,980 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 128 ms
54,460 KB
testcase_06 AC 128 ms
53,784 KB
testcase_07 RE -
testcase_08 AC 126 ms
54,112 KB
testcase_09 AC 126 ms
53,888 KB
testcase_10 RE -
testcase_11 AC 126 ms
53,852 KB
testcase_12 AC 125 ms
54,084 KB
testcase_13 AC 125 ms
53,844 KB
testcase_14 AC 127 ms
53,780 KB
testcase_15 AC 126 ms
53,980 KB
testcase_16 RE -
testcase_17 AC 126 ms
53,848 KB
testcase_18 AC 126 ms
53,996 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 123 ms
53,820 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 125 ms
53,912 KB
testcase_26 AC 125 ms
53,784 KB
testcase_27 AC 127 ms
53,912 KB
testcase_28 AC 124 ms
53,880 KB
testcase_29 AC 127 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		long n=getInt(),r=4,mod=1000000007;
		if(n==1) {
			System.out.println(2);
			return;
		}
		r=r*modPow(5,n/2-1,mod)%mod;
		if(n%2==1)
			r=r*3%mod;
		System.out.println(r);
	}
	public static long modPow(long n,long p,long mod) {
		if(p==0) return 1;
		if(p==1) return n%mod;
		if(p%2==0) {
			long buf=modPow(n, p/2, mod);
			return buf*buf%mod;
		}
		return n*modPow(n, p-1, mod)%mod;
	}
}
0