結果

問題 No.16 累乗の加算
ユーザー kou6839kou6839
提出日時 2014-11-23 10:52:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-06-26 04:47:29
合計ジャッジ時間 4,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,884 KB
testcase_01 AC 132 ms
41,248 KB
testcase_02 AC 144 ms
41,028 KB
testcase_03 AC 136 ms
41,400 KB
testcase_04 AC 138 ms
40,936 KB
testcase_05 AC 141 ms
40,960 KB
testcase_06 AC 144 ms
41,204 KB
testcase_07 AC 144 ms
40,948 KB
testcase_08 AC 145 ms
41,012 KB
testcase_09 AC 146 ms
40,948 KB
testcase_10 AC 144 ms
41,168 KB
testcase_11 AC 135 ms
40,780 KB
testcase_12 AC 142 ms
41,260 KB
testcase_13 AC 147 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	static long kuri(long x,long a){
		if(a==0) return 1;
		long res = kuri(x*x%1000003,a/2);
		if(a%2==1) res=res*x;
		return res%1000003;
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long x = sc.nextLong();
		long n = sc.nextLong();
		long ans=0;
		for(int i=0;i<n;i++){
			int aa=sc.nextInt();
			long temp=kuri(x,aa);
			ans+=temp%1000003;
		}
		System.out.println(ans%1000003);
	}
}	
0