結果
問題 | No.16 累乗の加算 |
ユーザー | jp_ste |
提出日時 | 2016-02-12 14:47:21 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 430 bytes |
コンパイル時間 | 2,107 ms |
コンパイル使用メモリ | 73,984 KB |
実行使用メモリ | 61,140 KB |
最終ジャッジ日時 | 2024-09-22 04:11:06 |
合計ジャッジ時間 | 9,001 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
54,440 KB |
testcase_01 | AC | 127 ms
54,048 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); long ans = 0; int x = scan.nextInt(); int N = scan.nextInt(); for(int i=0; i<N; i++) { int a = scan.nextInt(); ans += pow(x,a); } System.out.println(ans); } static int pow(int x, int a) { int v = 1; for(int i=0; i<a; i++) { v = (v * x) % 1000003; } return v; } }