結果

問題 No.1184 Hà Nội
ユーザー face4face4
提出日時 2021-04-12 20:46:27
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 11,054 ms
コンパイル使用メモリ 442,272 KB
実行使用メモリ 51,916 KB
最終ジャッジ日時 2024-06-28 16:36:18
合計ジャッジ時間 21,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
51,788 KB
testcase_01 AC 303 ms
51,660 KB
testcase_02 AC 304 ms
51,732 KB
testcase_03 AC 308 ms
51,896 KB
testcase_04 AC 304 ms
51,812 KB
testcase_05 AC 299 ms
51,660 KB
testcase_06 AC 304 ms
51,916 KB
testcase_07 AC 303 ms
51,816 KB
testcase_08 AC 306 ms
51,740 KB
testcase_09 AC 300 ms
51,532 KB
testcase_10 AC 309 ms
51,816 KB
testcase_11 AC 307 ms
51,880 KB
testcase_12 AC 302 ms
51,784 KB
testcase_13 AC 298 ms
51,728 KB
testcase_14 AC 306 ms
51,540 KB
testcase_15 AC 306 ms
51,832 KB
testcase_16 AC 301 ms
51,660 KB
testcase_17 AC 302 ms
51,748 KB
testcase_18 AC 310 ms
51,784 KB
testcase_19 AC 308 ms
51,656 KB
testcase_20 AC 308 ms
51,820 KB
testcase_21 AC 310 ms
51,820 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

const val mod = 1000000007

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