結果

問題 No.16 累乗の加算
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-22 18:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 716 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 89,168 KB
実行使用メモリ 41,936 KB
最終ジャッジ日時 2024-06-26 04:52:50
合計ジャッジ時間 5,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,168 KB
testcase_01 AC 121 ms
40,500 KB
testcase_02 AC 156 ms
41,712 KB
testcase_03 AC 143 ms
41,332 KB
testcase_04 AC 152 ms
41,288 KB
testcase_05 AC 135 ms
40,764 KB
testcase_06 AC 155 ms
41,484 KB
testcase_07 AC 156 ms
41,776 KB
testcase_08 AC 160 ms
41,936 KB
testcase_09 AC 161 ms
41,728 KB
testcase_10 AC 157 ms
41,664 KB
testcase_11 AC 140 ms
40,936 KB
testcase_12 AC 145 ms
40,604 KB
testcase_13 AC 141 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
import java.util.stream.*;

import static java.util.stream.Collectors.*;

public class Main {
    private static final BigInteger MOD = BigInteger.valueOf(1_000_003);
    private void solve() {
        Scanner sc = new Scanner(System.in);
        BigInteger x = BigInteger.valueOf(sc.nextInt());
        sc.nextLine();
        int res = Stream.of(sc.nextLine().split(" "))
                        .map(e -> x.modPow(new BigInteger(e), MOD))
                        .reduce(BigInteger.ZERO, (p, q) -> p.add(q).mod(MOD))
                        .intValue();
        System.out.println(res);
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0