結果

問題 No.16 累乗の加算
ユーザー YamaKasaYamaKasa
提出日時 2018-06-13 01:47:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 625 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-06-30 14:00:14
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,936 KB
testcase_01 AC 129 ms
41,052 KB
testcase_02 AC 133 ms
41,224 KB
testcase_03 AC 129 ms
41,336 KB
testcase_04 AC 134 ms
41,320 KB
testcase_05 AC 121 ms
40,032 KB
testcase_06 AC 135 ms
41,552 KB
testcase_07 AC 121 ms
40,032 KB
testcase_08 AC 134 ms
41,204 KB
testcase_09 AC 129 ms
41,128 KB
testcase_10 AC 133 ms
41,376 KB
testcase_11 AC 129 ms
41,252 KB
testcase_12 AC 143 ms
41,588 KB
testcase_13 AC 137 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int x = scan.nextInt();
		int N = scan.nextInt();
		long []a = new long[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextInt();
		}
		scan.close();
		int k = 1000003;
		long ans = 0;
		for(int i = 0; i < N; i++) {
			ans += pow(x, a[i], k);
			ans = ans % k;
		}
		System.out.println(ans % k);
	}
	public static long pow(long x, long n, int k) {
		if(n == 0) {
			return 1;
		}
		if(n % 2  == 0) {
			return pow(x * x % k, n / 2, k);
		}else {
			return x * pow(x, n - 1, k) % k;
		}
	}
}
0