結果

問題 No.1184 Hà Nội
ユーザー face4face4
提出日時 2021-04-12 20:47:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 13,243 ms
コンパイル使用メモリ 427,948 KB
実行使用メモリ 51,772 KB
最終ジャッジ日時 2024-06-28 16:37:11
合計ジャッジ時間 20,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
51,772 KB
testcase_01 AC 307 ms
51,648 KB
testcase_02 AC 305 ms
51,636 KB
testcase_03 AC 305 ms
51,632 KB
testcase_04 AC 306 ms
51,672 KB
testcase_05 AC 305 ms
51,552 KB
testcase_06 AC 304 ms
51,428 KB
testcase_07 AC 307 ms
51,528 KB
testcase_08 AC 302 ms
51,444 KB
testcase_09 AC 305 ms
51,588 KB
testcase_10 AC 308 ms
51,520 KB
testcase_11 AC 305 ms
51,612 KB
testcase_12 AC 308 ms
51,356 KB
testcase_13 AC 312 ms
51,308 KB
testcase_14 AC 314 ms
51,648 KB
testcase_15 AC 308 ms
51,508 KB
testcase_16 AC 314 ms
51,540 KB
testcase_17 AC 316 ms
51,604 KB
testcase_18 AC 307 ms
51,608 KB
testcase_19 AC 313 ms
51,644 KB
testcase_20 AC 305 ms
51,672 KB
testcase_21 AC 310 ms
51,640 KB
testcase_22 AC 310 ms
51,432 KB
testcase_23 AC 308 ms
51,640 KB
testcase_24 AC 309 ms
51,576 KB
testcase_25 AC 311 ms
51,652 KB
testcase_26 AC 313 ms
51,476 KB
testcase_27 AC 308 ms
51,684 KB
testcase_28 AC 310 ms
51,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const val mod = 998244353

fun modpow(x: Long, n: Long ): Long {
    return when (n) {
        0L -> {
            1
        }
        1L -> {
            x
        }
        else -> {
            val tmp = modpow(x, n / 2)
            tmp * tmp % mod * (if (n % 2 == 1L) x else 1) % mod
        }
    }
}

fun main() {
    val (n, l) = readLine()!!.split(" ").map { it.toLong() }
    val beki = (n + l - 1) / l
    println((modpow(2,beki)+mod-1)%mod)
}
0