結果

問題 No.16 累乗の加算
ユーザー watarimaycry2watarimaycry2
提出日時 2019-12-09 22:39:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 1,019 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-06-23 07:22:17
合計ジャッジ時間 5,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,256 KB
testcase_01 AC 136 ms
41,288 KB
testcase_02 AC 146 ms
41,076 KB
testcase_03 AC 139 ms
41,336 KB
testcase_04 AC 142 ms
41,272 KB
testcase_05 AC 143 ms
41,056 KB
testcase_06 AC 146 ms
41,180 KB
testcase_07 AC 144 ms
41,356 KB
testcase_08 AC 142 ms
41,308 KB
testcase_09 AC 142 ms
41,060 KB
testcase_10 AC 137 ms
41,376 KB
testcase_11 AC 114 ms
40,000 KB
testcase_12 AC 139 ms
41,360 KB
testcase_13 AC 140 ms
41,204 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