結果

問題 No.16 累乗の加算
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-24 15:21:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 75,308 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-06-02 06:43:55
合計ジャッジ時間 5,472 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,384 KB
testcase_01 AC 99 ms
39,972 KB
testcase_02 AC 153 ms
41,524 KB
testcase_03 AC 118 ms
40,236 KB
testcase_04 AC 120 ms
41,252 KB
testcase_05 AC 131 ms
41,508 KB
testcase_06 AC 123 ms
40,548 KB
testcase_07 AC 127 ms
41,528 KB
testcase_08 AC 135 ms
41,432 KB
testcase_09 AC 136 ms
41,268 KB
testcase_10 AC 125 ms
40,192 KB
testcase_11 AC 96 ms
39,844 KB
testcase_12 AC 120 ms
40,616 KB
testcase_13 AC 105 ms
40,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;

public class Mian {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        
        BigInteger x = stdin.nextBigInteger();
        int n = stdin.nextInt();
        
        BigInteger answer = BigInteger.ZERO;
        BigInteger divisor = new BigInteger("1000003");
        for (int i = 0; i < n; i++) {
            BigInteger a = stdin.nextBigInteger();
            answer = answer.add(x.modPow(a, divisor));
        }
        
        System.out.println(answer.mod(divisor));
    }
}
0