結果
問題 | No.16 累乗の加算 |
ユーザー | バカらっく |
提出日時 | 2019-09-01 06:11:49 |
言語 | Kotlin (1.9.23) |
結果 |
RE
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 13,173 ms |
コンパイル使用メモリ | 436,980 KB |
実行使用メモリ | 53,484 KB |
最終ジャッジ日時 | 2024-05-05 10:38:22 |
合計ジャッジ時間 | 19,870 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 276 ms
51,736 KB |
testcase_01 | AC | 278 ms
51,792 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
コンパイルメッセージ
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() } ^
ソースコード
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 } val ans = (getPow(pow-1) * basePow) % div dic[pow] = ans return ans }