結果

問題 No.16 累乗の加算
ユーザー バカらっくバカらっく
提出日時 2019-09-01 06:15:19
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 598 bytes
コンパイル時間 12,756 ms
コンパイル使用メモリ 445,528 KB
実行使用メモリ 55,092 KB
最終ジャッジ日時 2024-05-05 10:43:49
合計ジャッジ時間 21,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
55,092 KB
testcase_01 AC 283 ms
51,804 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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() }
           ^
Main.kt:7:27: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    for(i in 0..list.max()!!) {
                          ^

ソースコード

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() }
    for(i in 0..list.max()!!) {
        getPow(i)
    }
    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 }
    val ans = (getPow(pow-1) * basePow) % div
    dic[pow] = ans
    return ans
}
0