結果

問題 No.16 累乗の加算
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-03 13:14:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 1,447 bytes
コンパイル時間 3,381 ms
コンパイル使用メモリ 78,460 KB
実行使用メモリ 51,552 KB
最終ジャッジ日時 2024-06-26 04:53:21
合計ジャッジ時間 4,979 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,504 KB
testcase_01 AC 58 ms
50,256 KB
testcase_02 AC 87 ms
51,552 KB
testcase_03 AC 60 ms
50,560 KB
testcase_04 AC 61 ms
50,492 KB
testcase_05 AC 62 ms
50,476 KB
testcase_06 AC 66 ms
50,388 KB
testcase_07 AC 64 ms
50,508 KB
testcase_08 AC 79 ms
50,360 KB
testcase_09 AC 76 ms
51,260 KB
testcase_10 AC 65 ms
50,636 KB
testcase_11 AC 57 ms
50,596 KB
testcase_12 AC 66 ms
50,684 KB
testcase_13 AC 58 ms
50,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class NO016 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            long[] xN = strTointArray(br.readLine());
            BigInteger[] a = strTointArrayBigInt(br.readLine());
            BigInteger x = new BigInteger(Long.toString(xN[0]));
            BigInteger ans = new BigInteger("0");
            BigInteger mod = new BigInteger("1000003");
            for (int i = 0; i < xN[1]; i++) {
                ans = ans.add(x.modPow(a[i], mod));
            }

            System.out.println(ans.mod(mod));
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

    static long[] strTointArray(String S) {
        String[] strArray = S.split(" ");
        long[] longArray = new long[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            longArray[i] = Long.parseLong(strArray[i]);
        }
        return longArray;
    }

    static BigInteger[] strTointArrayBigInt(String S) {
        String[] strArray = S.split(" ");
        BigInteger[] longArray = new BigInteger[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            longArray[i] = new BigInteger(strArray[i]);
        }
        return longArray;
    }
}
0