結果

問題 No.16 累乗の加算
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-15 12:15:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 1,103 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 78,708 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-26 05:01:22
合計ジャッジ時間 4,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,252 KB
testcase_01 AC 134 ms
41,352 KB
testcase_02 AC 149 ms
41,784 KB
testcase_03 AC 145 ms
41,500 KB
testcase_04 AC 139 ms
41,408 KB
testcase_05 AC 145 ms
41,720 KB
testcase_06 AC 146 ms
41,396 KB
testcase_07 AC 141 ms
41,528 KB
testcase_08 AC 144 ms
41,512 KB
testcase_09 AC 140 ms
41,760 KB
testcase_10 AC 139 ms
41,220 KB
testcase_11 AC 133 ms
41,188 KB
testcase_12 AC 141 ms
41,488 KB
testcase_13 AC 139 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {

    static ArrayList<Long> xs = new ArrayList();
    static ArrayList<Long> xn = new ArrayList();

    public static void main(String[] args) throws Exception {

        Scanner sc = new Scanner(System.in);

        long x = sc.nextLong();

        pre(x);

        int n = sc.nextInt();

        long a = 0;

        for (int i = 0; i < n; i++) {
            a += empowerment(sc.nextLong());
        }

        System.out.println(surplus(a));
    }

    private static long surplus(long source) {
        return source % 1000003;
    }

    private static long empowerment(long a) {
        long tmpX = 1;
        for (int i = xn.size() - 1; i >= 0; i--) {
            long tmp = xn.get(i);
            if (a >= tmp) {
                tmpX = surplus(tmpX * xs.get(i));
                a = a - tmp;
            }

        }

        return tmpX;
    }

    private static void pre(long x) {
        for (long i = 1; i < 1000000000; i = i + i) {
            xs.add(x);
            xn.add(i);

            x = surplus(x * x);
        }
    }
}
0