結果

問題 No.16 累乗の加算
ユーザー sekiya9311sekiya9311
提出日時 2016-10-19 21:06:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 584 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-06-26 05:17:20
合計ジャッジ時間 4,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,100 KB
testcase_01 AC 135 ms
40,948 KB
testcase_02 AC 145 ms
41,088 KB
testcase_03 AC 141 ms
41,244 KB
testcase_04 AC 139 ms
40,880 KB
testcase_05 AC 144 ms
41,116 KB
testcase_06 AC 143 ms
40,988 KB
testcase_07 AC 141 ms
41,124 KB
testcase_08 AC 150 ms
41,440 KB
testcase_09 AC 148 ms
41,184 KB
testcase_10 AC 131 ms
40,440 KB
testcase_11 AC 134 ms
41,204 KB
testcase_12 AC 145 ms
41,104 KB
testcase_13 AC 129 ms
40,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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