結果

問題 No.16 累乗の加算
ユーザー tsunabittsunabit
提出日時 2019-09-03 17:02:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 3,098 ms
コンパイル使用メモリ 75,468 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-06-06 14:34:20
合計ジャッジ時間 5,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,052 KB
testcase_01 AC 124 ms
41,160 KB
testcase_02 AC 126 ms
41,204 KB
testcase_03 AC 109 ms
40,220 KB
testcase_04 AC 125 ms
41,092 KB
testcase_05 AC 124 ms
41,016 KB
testcase_06 AC 117 ms
40,016 KB
testcase_07 AC 108 ms
39,688 KB
testcase_08 AC 126 ms
41,056 KB
testcase_09 AC 131 ms
41,452 KB
testcase_10 AC 128 ms
41,100 KB
testcase_11 AC 115 ms
41,100 KB
testcase_12 AC 123 ms
41,060 KB
testcase_13 AC 123 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No16 {
	public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int x = sc.nextInt(), n = sc.nextInt();
    	long w = 1000003;
    	long total = 0;
    	for(int i = 0; i < n; i++) {
    		double t = pow(x, sc.nextLong(), w);
    		total += t;
    	}
    	System.out.println((total % w));
	}
    static public long pow(long x, long n, long w) {
    	long ans = 1;
    	while(n > 0) {
    		if((n & 1) == 1) ans = ans * x % w;
    		x = x * x % w;
    		n >>= 1;
    	}
    	return ans;
    }
}
0