結果
問題 | No.16 累乗の加算 |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-14 20:41:46 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 2,130 ms |
コンパイル使用メモリ | 75,368 KB |
実行使用メモリ | 61,360 KB |
最終ジャッジ日時 | 2024-05-04 13:39:32 |
合計ジャッジ時間 | 9,110 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
41,696 KB |
testcase_01 | AC | 136 ms
41,608 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.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int N = sc.nextInt(); int m = 1000003; int sum=0; for(int i=0; i<N; i++){ int t=1; int a = sc.nextInt(); while(a!=0){ t=t*x%m; a--; } sum=sum+t; } System.out.println(sum); } }