結果

問題 No.16 累乗の加算
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-18 22:44:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 598 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-11-07 10:22:13
合計ジャッジ時間 4,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,444 KB
testcase_01 AC 130 ms
41,408 KB
testcase_02 AC 138 ms
41,760 KB
testcase_03 AC 137 ms
41,484 KB
testcase_04 AC 138 ms
41,040 KB
testcase_05 AC 138 ms
41,144 KB
testcase_06 AC 142 ms
41,388 KB
testcase_07 AC 136 ms
41,556 KB
testcase_08 AC 137 ms
41,168 KB
testcase_09 AC 142 ms
41,504 KB
testcase_10 AC 125 ms
40,192 KB
testcase_11 AC 131 ms
41,272 KB
testcase_12 AC 142 ms
41,272 KB
testcase_13 AC 137 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int x=scanner.nextInt();
		int n=scanner.nextInt();
		int mod=1000003;
		long ans=0;
		for(int i=0;i<n;i++){
			int a=scanner.nextInt();
			ans+=mod_pow(x,a,mod);
			ans=ans%mod;
		}
		System.out.println(ans);
	}

	public static long mod_pow(long x, long n, int mod) {
		if(n == 0) {
			return 1;
		}
		if(n % 2  == 0) {
			return mod_pow(x * x % mod, n / 2, mod);
		}else {
			return x * mod_pow(x, n - 1, mod) % mod;
		}
	}
	
	
}
0