結果

問題 No.16 累乗の加算
ユーザー yuki2006yuki2006
提出日時 2015-02-09 16:10:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 1,230 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 41,924 KB
最終ジャッジ日時 2024-06-26 04:49:47
合計ジャッジ時間 5,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,212 KB
testcase_01 AC 126 ms
41,272 KB
testcase_02 AC 137 ms
41,760 KB
testcase_03 AC 112 ms
40,176 KB
testcase_04 AC 128 ms
41,924 KB
testcase_05 AC 133 ms
41,212 KB
testcase_06 AC 133 ms
41,452 KB
testcase_07 AC 130 ms
41,228 KB
testcase_08 AC 133 ms
41,416 KB
testcase_09 AC 134 ms
41,228 KB
testcase_10 AC 133 ms
41,320 KB
testcase_11 AC 122 ms
41,092 KB
testcase_12 AC 117 ms
40,052 KB
testcase_13 AC 129 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yuki016 {
    public static void main(String[] args) {
        Yuki016 p = new Yuki016();

    }

    public Yuki016() {
        Scanner scanner = new Scanner(System.in);
        final int x = scanner.nextInt();
        final int N = scanner.nextInt();
        final int[] a = new int[N];

        int zeroCount = 0;
        final int MOD = 1000003;
        long tmp = x;
        long[] muls = new long[N];
        Arrays.fill(muls, 1);

        long ans2=1;
        for (int i = 0; i < N; i++) {
            a[i] = scanner.nextInt();
            if (a[i] == 0) {
                zeroCount++;
            }
        }
        while (zeroCount < N) {
            for (int i = 0; i < N; i++) {
                if (a[i] > 0) {
                    if (a[i] % 2 == 1) {
                        muls[i] = muls[i] * tmp % MOD;
                    }
                    a[i] >>= 1;
                    if (a[i] == 0) {
                        zeroCount++;
                    }
                }
            }
            tmp = (tmp * tmp) % MOD;
        }

        long ans = 0;
        for (int i = 0; i < N; i++) {
            ans += muls[i];
        }

        System.out.println(ans % MOD);
    }

}
0