結果

問題 No.16 累乗の加算
ユーザー GrenacheGrenache
提出日時 2015-11-03 14:26:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 54,836 KB
最終ジャッジ日時 2024-06-26 05:03:09
合計ジャッジ時間 5,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,300 KB
testcase_01 AC 126 ms
54,136 KB
testcase_02 AC 138 ms
53,912 KB
testcase_03 AC 135 ms
54,356 KB
testcase_04 AC 119 ms
54,836 KB
testcase_05 AC 135 ms
53,996 KB
testcase_06 AC 134 ms
53,832 KB
testcase_07 AC 133 ms
53,824 KB
testcase_08 AC 131 ms
54,052 KB
testcase_09 AC 133 ms
53,924 KB
testcase_10 AC 139 ms
53,960 KB
testcase_11 AC 130 ms
53,852 KB
testcase_12 AC 118 ms
53,184 KB
testcase_13 AC 117 ms
53,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder16 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        final int MOD = 1000003;
        int x = sc.nextInt();
        int n = sc.nextInt();
        
        long ret = 0;
        for (int i = 0; i < n; i++) {
        	int a = sc.nextInt();
        	long tmp = x;
        	long tmp2 = 1;
        	while (a > 0) {
        		if (a % 2 == 1) {
        			tmp2 = tmp2 * tmp % MOD;
        		}
        		tmp = tmp * tmp % MOD;
        		a /= 2;
        	}
        	
        	ret = (ret + tmp2) % MOD;
        }

        System.out.println(ret);
        
        sc.close();
    }
}
0