結果

問題 No.16 累乗の加算
ユーザー core123core123
提出日時 2019-05-07 10:03:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 576 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 42,068 KB
最終ジャッジ日時 2024-07-01 23:31:29
合計ジャッジ時間 5,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,796 KB
testcase_01 AC 121 ms
40,524 KB
testcase_02 AC 167 ms
41,844 KB
testcase_03 AC 132 ms
40,384 KB
testcase_04 AC 158 ms
41,400 KB
testcase_05 AC 161 ms
41,832 KB
testcase_06 AC 169 ms
41,908 KB
testcase_07 AC 167 ms
41,496 KB
testcase_08 AC 172 ms
41,604 KB
testcase_09 AC 157 ms
41,944 KB
testcase_10 AC 172 ms
41,832 KB
testcase_11 AC 136 ms
42,068 KB
testcase_12 AC 154 ms
41,560 KB
testcase_13 AC 123 ms
39,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc=new Scanner(System.in);
		int x=sc.nextInt();
		int n=sc.nextInt();
		int a[] = new int[n];
		for(int i=0;i<n;i++) {
			a[i]=sc.nextInt();
		}
		BigInteger ans=BigInteger.ZERO;
		BigInteger MOD=BigInteger.valueOf(1000003);
		BigInteger xx=BigInteger.valueOf(x);
		for(int i=0;i<n;i++) {
			ans=ans.add(xx.modPow(BigInteger.valueOf(a[i]), MOD));
			ans=ans.mod(MOD);
		}
		System.out.println(ans);
	}

}
0