結果

問題 No.16 累乗の加算
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-17 13:05:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 575 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-06-26 04:52:59
合計ジャッジ時間 6,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,472 KB
testcase_01 AC 130 ms
41,208 KB
testcase_02 AC 402 ms
41,636 KB
testcase_03 AC 208 ms
41,356 KB
testcase_04 AC 217 ms
40,524 KB
testcase_05 AC 228 ms
41,472 KB
testcase_06 AC 305 ms
41,352 KB
testcase_07 AC 270 ms
41,612 KB
testcase_08 AC 334 ms
41,660 KB
testcase_09 AC 350 ms
41,484 KB
testcase_10 AC 306 ms
41,404 KB
testcase_11 AC 141 ms
41,444 KB
testcase_12 AC 303 ms
41,472 KB
testcase_13 AC 228 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        long x= koko.nextLong();
        int n= koko.nextInt();
        long[] a = new long[n];
        long total=0;
        for(int i=0; i<n; i++){
            a[i]=koko.nextLong();
            a[i]=a[i]%1000002;
            long t=1;
            for(long j=0; j<a[i]; j++){
                t=(t*x)%1000003;
            }
            total = (total+t)%1000003;
        }
        System.out.println(total);
        
    }
}
0