結果

問題 No.16 累乗の加算
ユーザー purple_jwlpurple_jwl
提出日時 2016-10-27 11:29:30
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 805 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 11,018 ms
コンパイル使用メモリ 260,244 KB
実行使用メモリ 63,048 KB
最終ジャッジ日時 2024-06-29 19:39:44
合計ジャッジ時間 20,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 771 ms
62,932 KB
testcase_01 AC 783 ms
62,724 KB
testcase_02 AC 769 ms
63,048 KB
testcase_03 AC 759 ms
62,836 KB
testcase_04 AC 760 ms
62,868 KB
testcase_05 AC 787 ms
62,668 KB
testcase_06 AC 795 ms
62,880 KB
testcase_07 AC 799 ms
62,996 KB
testcase_08 AC 780 ms
62,860 KB
testcase_09 AC 770 ms
62,868 KB
testcase_10 AC 796 ms
62,660 KB
testcase_11 AC 775 ms
62,868 KB
testcase_12 AC 775 ms
62,624 KB
testcase_13 AC 805 ms
62,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Main {
  def modPow(x: BigInt, n: Int, mod: Int): BigInt = {
    if (n == 0) return 1
    var res = modPow(x * x % mod, n / 2, mod)
    if ((n & 1) == 1) res = res * x % mod
    return res
  }

  def main(args: Array[String]): Unit = {
    val mod = 1000003

    val Array(x, n) = StdIn.readLine().split(' ').map(_.toInt)

    val ans = StdIn.readLine().split(' ').map {
      a => modPow(x, a.toInt, mod)
    }.sum % mod

    println(ans)
  }
}
0