結果

問題 No.16 累乗の加算
コンテスト
ユーザー mits58
提出日時 2016-07-02 21:38:12
言語 Java
(openjdk 26.0.2.1)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 58 ms / 5,000 ms
+ 790µs
コード長 516 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,312 ms
コンパイル使用メモリ 83,544 KB
実行使用メモリ 43,104 KB
最終ジャッジ日時 2026-07-30 08:15:31
合計ジャッジ時間 3,317 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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