結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,856 KB
testcase_01 AC 134 ms
41,344 KB
testcase_02 AC 144 ms
40,904 KB
testcase_03 AC 141 ms
41,576 KB
testcase_04 AC 124 ms
40,092 KB
testcase_05 AC 144 ms
41,396 KB
testcase_06 AC 143 ms
41,296 KB
testcase_07 AC 140 ms
41,088 KB
testcase_08 AC 146 ms
40,824 KB
testcase_09 AC 143 ms
41,040 KB
testcase_10 AC 142 ms
41,080 KB
testcase_11 AC 133 ms
40,684 KB
testcase_12 AC 144 ms
40,972 KB
testcase_13 AC 141 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long sum = 0;		
		int x = scan.nextInt();
		int N = scan.nextInt();
		int m = 1000003;
		
		for(int i=0; i<N; i++) {
			int a = scan.nextInt();
			sum += pow(x,a,m);
		}
		scan.close();
		
		System.out.println(sum % m);
	}
	
	static long pow(int x, int a, int m) {
		long ret = 1L;
		
		long v = x % m;
		while(a > 0) {
			if(a % 2 == 1) {
				ret = ret * v % m;
			}
			v = v * v % m;
			a >>>= 1;
		}
		return ret;
	}
}
0