結果

問題 No.1299 Random Array Score
ユーザー rutilicusrutilicus
提出日時 2020-12-16 22:58:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 628 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 13,651 ms
コンパイル使用メモリ 436,048 KB
実行使用メモリ 101,996 KB
最終ジャッジ日時 2024-09-20 05:25:47
合計ジャッジ時間 33,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
55,008 KB
testcase_01 AC 309 ms
55,140 KB
testcase_02 AC 309 ms
55,168 KB
testcase_03 AC 619 ms
101,516 KB
testcase_04 AC 621 ms
100,440 KB
testcase_05 AC 579 ms
78,916 KB
testcase_06 AC 574 ms
77,124 KB
testcase_07 AC 579 ms
77,928 KB
testcase_08 AC 612 ms
100,176 KB
testcase_09 AC 402 ms
56,228 KB
testcase_10 AC 509 ms
68,728 KB
testcase_11 AC 468 ms
60,100 KB
testcase_12 AC 558 ms
76,544 KB
testcase_13 AC 621 ms
99,724 KB
testcase_14 AC 558 ms
76,940 KB
testcase_15 AC 551 ms
77,364 KB
testcase_16 AC 555 ms
77,168 KB
testcase_17 AC 471 ms
60,920 KB
testcase_18 AC 503 ms
69,100 KB
testcase_19 AC 514 ms
70,672 KB
testcase_20 AC 486 ms
64,588 KB
testcase_21 AC 370 ms
55,712 KB
testcase_22 AC 455 ms
61,440 KB
testcase_23 AC 557 ms
77,136 KB
testcase_24 AC 558 ms
78,968 KB
testcase_25 AC 554 ms
76,816 KB
testcase_26 AC 384 ms
55,688 KB
testcase_27 AC 472 ms
62,592 KB
testcase_28 AC 462 ms
60,696 KB
testcase_29 AC 470 ms
63,084 KB
testcase_30 AC 582 ms
76,156 KB
testcase_31 AC 477 ms
63,560 KB
testcase_32 AC 628 ms
99,352 KB
testcase_33 AC 627 ms
101,996 KB
testcase_34 AC 535 ms
73,660 KB
testcase_35 AC 627 ms
101,996 KB
testcase_36 AC 521 ms
73,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:7:10: warning: variable 'n' is never used
    val (n, k) = readInputLine().split(" ").map { it.toLong() }
         ^
Main.kt:10:13: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(aArr.sum() % mod * pow(2L, k, mod) % mod)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    // 数学嫌いが悪化している気がする
    val mod = 998244353L

    val (n, k) = readInputLine().split(" ").map { it.toLong() }
    val aArr = readInputLine().split(" ").map { it.toLong() }.toLongArray()

    builder.appendln(aArr.sum() % mod * pow(2L, k, mod) % mod)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}

fun pow(x: Long, n: Long, mod: Long): Long {
    var ret = 1L
    var base = x
    var nTmp = n

    while (nTmp != 0L) {
        if (nTmp % 2L != 0L) {
            ret = ret * base % mod
        }
        base = base * base % mod
        nTmp /= 2L
    }

    return ret
}
0