結果
問題 | No.16 累乗の加算 |
ユーザー | kuramu |
提出日時 | 2016-01-29 09:50:39 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 2,154 ms |
コンパイル使用メモリ | 73,424 KB |
実行使用メモリ | 112,256 KB |
最終ジャッジ日時 | 2024-09-21 17:50:48 |
合計ジャッジ時間 | 8,797 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,028 KB |
testcase_01 | AC | 46 ms
37,008 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.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class Main { public static void main(String[] args) { BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in)); try { String[] temp1 = stdReader.readLine().split(" "); int x = Integer.parseInt(temp1[0]); int N = Integer.parseInt(temp1[1]); String[] temp2 = stdReader.readLine().split(" "); BigInteger ans = BigInteger.valueOf(0); for(int i=0;i<N;i++){ ans = ans.add(BigInteger.valueOf(x).pow(Integer.parseInt(temp2[i]))); } System.out.println(ans.remainder(BigInteger.valueOf(1000003))); } catch (IOException e) { e.printStackTrace(); } } }