結果

問題 No.16 累乗の加算
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-04 00:36:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 1,072 bytes
コンパイル時間 3,535 ms
コンパイル使用メモリ 78,524 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-06-26 04:52:27
合計ジャッジ時間 6,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,460 KB
testcase_01 AC 132 ms
41,056 KB
testcase_02 AC 143 ms
41,528 KB
testcase_03 AC 135 ms
41,416 KB
testcase_04 AC 134 ms
41,348 KB
testcase_05 AC 134 ms
41,232 KB
testcase_06 AC 136 ms
41,596 KB
testcase_07 AC 137 ms
41,388 KB
testcase_08 AC 140 ms
41,432 KB
testcase_09 AC 144 ms
41,556 KB
testcase_10 AC 145 ms
41,460 KB
testcase_11 AC 132 ms
41,468 KB
testcase_12 AC 141 ms
41,540 KB
testcase_13 AC 138 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.16 累乗の加算

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No16 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int x = sc.nextInt();
        int n = sc.nextInt();
        long ans = 0;
        for (int i=0; i<n; i++) {
            ans = (ans + modPow(x,sc.nextInt(),1000003))%1000003;
        }
        out.println(ans);
    }

    static long modPow(long x, long n, long m) {
        long ret = 1;
        while (n > 0) {
            if ((n&1) == 1) ret = ret*x %m;
            x = x*x %m;
            n >>= 1;
        }
        return  ret;
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0