結果

問題 No.16 累乗の加算
ユーザー ぴろずぴろず
提出日時 2014-12-19 14:46:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-06-26 04:48:22
合計ジャッジ時間 5,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,048 KB
testcase_01 AC 135 ms
41,116 KB
testcase_02 AC 160 ms
41,388 KB
testcase_03 AC 145 ms
41,396 KB
testcase_04 AC 151 ms
41,176 KB
testcase_05 AC 149 ms
41,156 KB
testcase_06 AC 163 ms
41,264 KB
testcase_07 AC 155 ms
41,068 KB
testcase_08 AC 157 ms
41,544 KB
testcase_09 AC 162 ms
41,516 KB
testcase_10 AC 151 ms
41,156 KB
testcase_11 AC 120 ms
40,008 KB
testcase_12 AC 158 ms
41,076 KB
testcase_13 AC 143 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no016;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		BigInteger x = new BigInteger(sc.next());
		BigInteger MOD = new BigInteger("1000003");
		int n = sc.nextInt();
		BigInteger ans = BigInteger.ZERO;
		for(int i=0;i<n;i++) {
			ans = ans.add(x.modPow(new BigInteger(sc.next()), MOD));
		}
		System.out.println(ans.mod(MOD));
	}

}
0