結果

問題 No.16 累乗の加算
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-08 17:44:45
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 291 bytes
コンパイル時間 11,495 ms
コンパイル使用メモリ 428,248 KB
実行使用メモリ 244,120 KB
最終ジャッジ日時 2024-11-20 08:05:29
合計ジャッジ時間 79,930 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
55,136 KB
testcase_01 AC 326 ms
87,384 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 337 ms
244,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) { 
         ^

ソースコード

diff #

import java.math.BigDecimal

fun main(args: Array<String>) { 
  val base = BigDecimal(readLine()!!.split(" ")[0])
  val ans  = readLine()!!.split(" ").map { x -> 
    x.toInt()
  }.map { x ->
    base.pow(x).rem(BigDecimal("1000003")) 
  }.reduce { e, x ->
    e.add(x)
  }
  println(ans)
}
0