結果

問題 No.16 累乗の加算
コンテスト
ユーザー mits58
提出日時 2016-07-02 21:38:12
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 516 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,568 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 46,616 KB
最終ジャッジ日時 2026-03-12 19:43:38
合計ジャッジ時間 3,035 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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