結果

問題 No.16 累乗の加算
ユーザー takeya_okinotakeya_okino
提出日時 2017-10-27 22:14:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 2,931 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 45,516 KB
最終ジャッジ日時 2024-06-26 05:24:37
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
44,196 KB
testcase_01 AC 145 ms
45,116 KB
testcase_02 AC 159 ms
45,184 KB
testcase_03 AC 137 ms
44,344 KB
testcase_04 AC 139 ms
44,444 KB
testcase_05 AC 150 ms
44,976 KB
testcase_06 AC 153 ms
45,220 KB
testcase_07 AC 132 ms
44,452 KB
testcase_08 AC 156 ms
45,136 KB
testcase_09 AC 158 ms
45,336 KB
testcase_10 AC 156 ms
45,516 KB
testcase_11 AC 143 ms
45,056 KB
testcase_12 AC 154 ms
45,144 KB
testcase_13 AC 155 ms
45,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int x = sc.nextInt();
    int n = sc.nextInt();
    int[] r = new int[1000002];
    r[0] = 1;
    for(int i = 1; i < 1000002; i++) {
      r[i] = (r[i - 1] * x) % 1000003;
    }
    int ans = 0;
    for(int i = 0; i < n; i++) {
      int a = sc.nextInt();
      a = a % 1000002;
      ans = (ans + r[a]) % 1000003;
    }
    System.out.println(ans);
  }
}
0