結果

問題 No.2380 Sylow P-subgroup
ユーザー 箱星箱星
提出日時 2023-01-12 18:31:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 9,590 ms
コンパイル使用メモリ 437,016 KB
実行使用メモリ 57,048 KB
最終ジャッジ日時 2024-11-20 20:06:55
合計ジャッジ時間 15,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
55,364 KB
testcase_01 AC 270 ms
57,032 KB
testcase_02 AC 264 ms
56,896 KB
testcase_03 AC 263 ms
56,948 KB
testcase_04 AC 261 ms
57,036 KB
testcase_05 AC 282 ms
56,956 KB
testcase_06 AC 266 ms
56,924 KB
testcase_07 AC 269 ms
56,872 KB
testcase_08 AC 270 ms
56,864 KB
testcase_09 AC 266 ms
56,976 KB
testcase_10 AC 273 ms
56,732 KB
testcase_11 AC 263 ms
56,872 KB
testcase_12 AC 277 ms
56,880 KB
testcase_13 AC 263 ms
56,852 KB
testcase_14 AC 270 ms
56,936 KB
testcase_15 AC 270 ms
57,048 KB
testcase_16 AC 271 ms
56,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (n, p) = readln().split(" ").map { it.toLong() }
    var e = 0L
    var m = n
    while (m > 0) {
        e += m / p
        m /= p
    }
    println(pow(p, e))
}

fun pow(a: Long, e: Long): Long {
    val mod = 998244353L
    if (e == 0L) return 1
    if (e == 1L) return a % mod
    val b = pow(a, e / 2)
    return if (e % 2 == 0L) {
        b * b % mod
    } else {
        (b * b % mod) * a % mod
    }
}
0