結果

問題 No.16 累乗の加算
ユーザー tentententen
提出日時 2020-11-17 08:34:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-07-23 01:55:04
合計ジャッジ時間 4,769 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,124 KB
testcase_01 AC 131 ms
40,908 KB
testcase_02 AC 140 ms
41,036 KB
testcase_03 AC 123 ms
40,136 KB
testcase_04 AC 138 ms
41,168 KB
testcase_05 AC 137 ms
41,444 KB
testcase_06 AC 125 ms
40,016 KB
testcase_07 AC 138 ms
41,428 KB
testcase_08 AC 139 ms
41,416 KB
testcase_09 AC 151 ms
41,492 KB
testcase_10 AC 137 ms
41,216 KB
testcase_11 AC 138 ms
41,060 KB
testcase_12 AC 142 ms
41,212 KB
testcase_13 AC 143 ms
41,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000003;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int n = sc.nextInt();
        long ans = 0;
        for (int i = 0; i < n; i++) {
            ans += pow(x, sc.nextInt());
            ans %= MOD;
        }
        System.out.print(ans);
    }
    
    static long pow(long x, long p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return x * pow(x, p - 1) % MOD;
        }
    }
}
0