結果

問題 No.16 累乗の加算
ユーザー watarimaycry2watarimaycry2
提出日時 2020-01-02 21:36:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 1,019 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 55,532 KB
最終ジャッジ日時 2024-11-22 18:20:10
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,980 KB
testcase_01 AC 125 ms
53,572 KB
testcase_02 AC 140 ms
54,028 KB
testcase_03 AC 131 ms
53,884 KB
testcase_04 AC 118 ms
53,484 KB
testcase_05 AC 115 ms
52,476 KB
testcase_06 AC 130 ms
54,264 KB
testcase_07 AC 135 ms
53,864 KB
testcase_08 AC 134 ms
53,692 KB
testcase_09 AC 139 ms
53,720 KB
testcase_10 AC 136 ms
55,532 KB
testcase_11 AC 130 ms
54,140 KB
testcase_12 AC 129 ms
53,568 KB
testcase_13 AC 137 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
        static Scanner sc = new Scanner(System.in);
        static void myout(Object t){System.out.println(t);}
        static String getStr(){return sc.next();}
        static int getInt(){return sc.nextInt();}
        static Long getLong(){return sc.nextLong();}
        static boolean isNext(){return sc.hasNext();}
        public static void main(String[] args){
          long x = getLong();
          long N = getLong();
          int mod = 1000003;
          long output = 0;
          for(int i = 0; i < N; i++){
            output += originPow(x,getLong(),mod);
            output %= mod;
          }
          myout(output);
        }
        //便利メソッド追加枠ここから
static long originPow(long x, long n,int m) {
        long ans = 1;
        while (n > 0) {
                if ((n & 1) == 1)ans = ans * x % m;
                x = x * x % m;
                n >>= 1;
        }
        return ans;
}
        //便利メソッド追加枠ここまで
}
0