結果

問題 No.16 累乗の加算
ユーザー mits58mits58
提出日時 2016-07-02 21:38:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-06-26 05:15:16
合計ジャッジ時間 4,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,920 KB
testcase_01 AC 132 ms
41,004 KB
testcase_02 AC 145 ms
41,204 KB
testcase_03 AC 136 ms
40,952 KB
testcase_04 AC 137 ms
41,168 KB
testcase_05 AC 140 ms
41,236 KB
testcase_06 AC 145 ms
41,156 KB
testcase_07 AC 142 ms
40,908 KB
testcase_08 AC 142 ms
41,268 KB
testcase_09 AC 141 ms
41,168 KB
testcase_10 AC 140 ms
41,228 KB
testcase_11 AC 129 ms
41,248 KB
testcase_12 AC 145 ms
41,432 KB
testcase_13 AC 140 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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