結果

問題 No.16 累乗の加算
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 20:21:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 3,398 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 42,204 KB
最終ジャッジ日時 2024-06-26 05:17:29
合計ジャッジ時間 5,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,368 KB
testcase_01 AC 142 ms
41,276 KB
testcase_02 AC 173 ms
42,204 KB
testcase_03 AC 151 ms
42,012 KB
testcase_04 AC 155 ms
41,532 KB
testcase_05 AC 159 ms
41,984 KB
testcase_06 AC 172 ms
41,800 KB
testcase_07 AC 157 ms
41,600 KB
testcase_08 AC 166 ms
41,952 KB
testcase_09 AC 170 ms
41,992 KB
testcase_10 AC 166 ms
42,200 KB
testcase_11 AC 136 ms
41,416 KB
testcase_12 AC 165 ms
41,840 KB
testcase_13 AC 142 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	static final int mod = 1_000_003;
	static final BigInteger modb = BigInteger.valueOf(mod);

	public static void main(String[] args) {
		BigInteger in = BigInteger.valueOf(s.nextInt());
		s.next();
		long r = 0;
		while(s.hasNext()) {
			r += Long.parseLong(in.modPow(BigInteger.valueOf(s.nextInt()), modb).toString());
		}
		System.out.println(r%mod);
	}
}
0