結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,372 KB
testcase_01 AC 127 ms
41,308 KB
testcase_02 AC 137 ms
41,316 KB
testcase_03 AC 131 ms
41,412 KB
testcase_04 AC 136 ms
41,364 KB
testcase_05 AC 120 ms
40,372 KB
testcase_06 AC 137 ms
41,460 KB
testcase_07 AC 133 ms
41,208 KB
testcase_08 AC 136 ms
41,524 KB
testcase_09 AC 134 ms
41,824 KB
testcase_10 AC 138 ms
41,600 KB
testcase_11 AC 130 ms
41,336 KB
testcase_12 AC 136 ms
41,576 KB
testcase_13 AC 116 ms
40,340 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) {
		if(a==0) return 1;
		long ret = 1L;
		
		long v = x % m;
		String b = Integer.toBinaryString(a);
		if(b.charAt(b.length()-1) == '1') ret = v;
		
		for(int i=b.length()-2; i>=0; i--) {
			v = (v * v) % m;
			if(b.charAt(i) == '1') {
				ret = (ret * v) % m;
			}
		}
		return ret;
	}
}
0