結果

問題 No.16 累乗の加算
ユーザー rn4rurn4ru
提出日時 2016-04-13 03:06:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 77,912 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-06-26 05:12:56
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,792 KB
testcase_01 AC 133 ms
40,900 KB
testcase_02 AC 147 ms
41,096 KB
testcase_03 AC 141 ms
40,956 KB
testcase_04 AC 145 ms
40,820 KB
testcase_05 AC 150 ms
40,040 KB
testcase_06 AC 147 ms
41,256 KB
testcase_07 AC 144 ms
41,012 KB
testcase_08 AC 143 ms
41,144 KB
testcase_09 AC 150 ms
41,344 KB
testcase_10 AC 146 ms
41,232 KB
testcase_11 AC 132 ms
41,188 KB
testcase_12 AC 144 ms
41,396 KB
testcase_13 AC 141 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	final static int mod = 1000003;

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int x = scanner.nextInt();
		int N = scanner.nextInt();

		int[] a = new int[N];
		for (int i = 0; i < N; i++) {
			a[i] = scanner.nextInt();
		}

		int sum = 0;
		for (int i = 0; i < N; i++) {
			sum += myPow(x, a[i]);
		}
		System.out.println(sum % mod);
	}

	private static long myPow(int x, int i) {
		if (i == 0) {
			return 1;
		}

		if (i % 2 == 1) {
			return (x * myPow(x, i - 1)) % mod;
		} else {
			long s = myPow(x, i / 2);
			return (s * s) % mod;
		}
	}

}
0