結果

問題 No.16 累乗の加算
ユーザー バカらっくバカらっく
提出日時 2019-09-01 06:18:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 290 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 10,617 ms
コンパイル使用メモリ 434,400 KB
実行使用メモリ 52,336 KB
最終ジャッジ日時 2024-05-05 10:47:48
合計ジャッジ時間 15,627 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
51,988 KB
testcase_01 AC 277 ms
51,752 KB
testcase_02 AC 290 ms
52,192 KB
testcase_03 AC 279 ms
51,824 KB
testcase_04 AC 282 ms
51,948 KB
testcase_05 AC 283 ms
52,188 KB
testcase_06 AC 287 ms
51,968 KB
testcase_07 AC 276 ms
52,088 KB
testcase_08 AC 283 ms
52,336 KB
testcase_09 AC 286 ms
52,020 KB
testcase_10 AC 281 ms
52,040 KB
testcase_11 AC 272 ms
51,828 KB
testcase_12 AC 280 ms
52,132 KB
testcase_13 AC 277 ms
51,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:4:12: warning: variable 'b' is never used
    val (a,b) = readLine()!!.split(" ").map { it.toInt() }
           ^

ソースコード

diff #

import java.lang.StringBuilder

fun main(args: Array<String>) {
    val (a,b) = readLine()!!.split(" ").map { it.toInt() }
    basePow = a
    val list = readLine()!!.split(" ").map { it.toInt() }
    val ans = list.map { getPow(it) }.reduce { acc, l -> acc + l } % div
    println(ans)
}

var basePow = 2
val div = 1000003
val dic = mutableMapOf<Int, Long>()
fun getPow(pow:Int):Long {
    if(pow == 0) {
        return 1
    }
    dic[pow]?.let { return it }
    var ans = getPow(pow/2)
    ans = (ans * ans) % div
    if(pow % 2 > 0) {
        ans = (ans * basePow) % div
    }
    dic[pow] = ans
    return ans
}
0