結果

問題 No.16 累乗の加算
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 20:33:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-26 05:17:34
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,264 KB
testcase_01 AC 128 ms
41,352 KB
testcase_02 AC 161 ms
41,484 KB
testcase_03 AC 141 ms
41,472 KB
testcase_04 AC 140 ms
41,288 KB
testcase_05 AC 126 ms
40,600 KB
testcase_06 AC 144 ms
41,288 KB
testcase_07 AC 150 ms
41,336 KB
testcase_08 AC 159 ms
41,208 KB
testcase_09 AC 148 ms
41,124 KB
testcase_10 AC 154 ms
41,204 KB
testcase_11 AC 128 ms
41,372 KB
testcase_12 AC 160 ms
41,568 KB
testcase_13 AC 124 ms
40,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.math.BigInteger.*;import java.math.*;import java.util.*;class A{Scanner s=new Scanner(System.in);int mod=1000003;BigInteger modb=valueOf(this.mod);public static void main(String[] args){Scanner s=new Scanner(System.in);int mod=1000003;BigInteger modb=valueOf(mod),in=valueOf(s.nextInt());s.next();long r=0;while(s.hasNext()){r+=Long.parseLong(in.modPow(valueOf(s.nextInt()),modb).toString());}System.out.println(r%mod);}}
0