結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 377 ms
51,792 KB
testcase_01 AC 272 ms
51,484 KB
testcase_02 AC 305 ms
52,012 KB
testcase_03 AC 287 ms
51,872 KB
testcase_04 AC 287 ms
51,768 KB
testcase_05 AC 295 ms
51,704 KB
testcase_06 AC 305 ms
51,760 KB
testcase_07 AC 283 ms
51,676 KB
testcase_08 AC 292 ms
51,852 KB
testcase_09 AC 302 ms
51,968 KB
testcase_10 AC 284 ms
51,800 KB
testcase_11 AC 274 ms
51,480 KB
testcase_12 AC 295 ms
51,704 KB
testcase_13 AC 286 ms
51,848 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