結果

問題 No.344 ある無理数の累乗
ユーザー mits58mits58
提出日時 2016-07-09 00:51:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 3,429 ms
コンパイル使用メモリ 76,760 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-10-13 07:54:45
合計ジャッジ時間 6,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,132 KB
testcase_01 AC 125 ms
41,208 KB
testcase_02 AC 108 ms
40,332 KB
testcase_03 AC 117 ms
40,864 KB
testcase_04 AC 120 ms
41,412 KB
testcase_05 AC 125 ms
41,100 KB
testcase_06 AC 114 ms
40,280 KB
testcase_07 AC 112 ms
39,964 KB
testcase_08 AC 120 ms
40,940 KB
testcase_09 AC 109 ms
39,980 KB
testcase_10 AC 120 ms
41,140 KB
testcase_11 AC 115 ms
40,940 KB
testcase_12 AC 120 ms
41,228 KB
testcase_13 AC 125 ms
41,172 KB
testcase_14 AC 122 ms
41,220 KB
testcase_15 AC 120 ms
41,288 KB
testcase_16 AC 124 ms
40,892 KB
testcase_17 AC 108 ms
40,312 KB
testcase_18 AC 120 ms
41,420 KB
testcase_19 AC 118 ms
41,344 KB
testcase_20 AC 119 ms
41,136 KB
testcase_21 AC 127 ms
41,280 KB
testcase_22 AC 110 ms
40,176 KB
testcase_23 AC 117 ms
41,084 KB
testcase_24 AC 107 ms
40,100 KB
testcase_25 AC 108 ms
39,972 KB
testcase_26 AC 128 ms
41,200 KB
testcase_27 AC 118 ms
41,112 KB
testcase_28 AC 111 ms
40,244 KB
testcase_29 AC 120 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	static int[][] I={{1,0},{0,1}};
	static int mod=1000;
	static int[][] pow(int[][] a,int x){
		if(x==1 || x==0) return a;
		else if(x%2==0) return pow(mul(a,a),x/2);
		else return mul(pow(mul(a,a),x/2),a);
	}
	static int[][] mul(int[][] a,int[][] b){
		int[][] res=new int[2][2];
		for(int i=0;i<2;i++){
			for(int j=0;j<2;j++){
				for(int k=0;k<2;k++){
					res[i][j]+=a[i][k]*b[k][j];
					res[i][j]%=mod;
				}
			}
		}
		return res;
	}
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			int[][] a={{1,3},{1,1}};
			int[][] ans=pow(a,n);
			if(n==0) System.out.println(1);
			else System.out.println((2*ans[0][0]+(n%2==0 ? -1 : 0))%mod);
		}
	}
}
0