結果
問題 | No.16 累乗の加算 |
ユーザー | aaaaasatori |
提出日時 | 2018-02-18 15:37:20 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 553 bytes |
コンパイル時間 | 3,727 ms |
コンパイル使用メモリ | 75,536 KB |
実行使用メモリ | 52,636 KB |
最終ジャッジ日時 | 2024-06-24 12:46:31 |
合計ジャッジ時間 | 10,240 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
52,636 KB |
testcase_01 | AC | 135 ms
41,520 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.ArrayList; import java.util.List; import java.util.Scanner; public class No16 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long x = sc.nextLong(); int N = sc.nextInt(); List<Long> a = new ArrayList<Long>(); for(int i = 0;i < N;i++) { a.add(sc.nextLong()); } long xn = 1; long sum = 0; for(long i = 0;i <= a.get(a.size()-1);i++) { if(i != 0) { xn = xn * x % 1000003; } if(a.indexOf(i) != -1) { sum = (sum + xn) % 1000003; } } System.out.println(sum); } }