結果

問題 No.16 累乗の加算
ユーザー koba-e964koba-e964
提出日時 2015-12-05 02:52:15
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 902 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 10,398 ms
コンパイル使用メモリ 266,508 KB
実行使用メモリ 64,332 KB
最終ジャッジ日時 2024-06-29 11:54:37
合計ジャッジ時間 20,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 803 ms
63,852 KB
testcase_01 AC 902 ms
63,928 KB
testcase_02 AC 834 ms
64,204 KB
testcase_03 AC 827 ms
63,904 KB
testcase_04 AC 826 ms
63,908 KB
testcase_05 AC 816 ms
63,988 KB
testcase_06 AC 830 ms
64,008 KB
testcase_07 AC 840 ms
64,232 KB
testcase_08 AC 823 ms
64,332 KB
testcase_09 AC 824 ms
64,152 KB
testcase_10 AC 820 ms
64,004 KB
testcase_11 AC 814 ms
64,020 KB
testcase_12 AC 778 ms
63,940 KB
testcase_13 AC 812 ms
63,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * Reference: http://lizan.asia/blog/2012/12/11/scala-competitive/
 */

object Main extends App {
  import java.{util => ju}
  import scala.annotation._
  import scala.collection._
  import scala.collection.{mutable => mu}
  import scala.collection.JavaConverters._
  import scala.math._

  val sc = new ju.Scanner(System.in)
  val mod : Long = 1000003
  def pow(a:Long, b:Long)={
    var sum : Long= 1
    var cur : Long= a
    var e = b
    while (e > 0) {
      if (e % 2 == 1) { sum *= cur; sum %= mod}
      cur = cur * cur % mod
      e /= 2
    }
    sum
  }
  val x,n = sc.nextInt
  val a = Array.fill(n)(pow(x,sc.nextLong))
  println(a.sum % mod)
}
0