結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー titiatitia
提出日時 2024-05-11 05:47:54
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 635 bytes
コンパイル時間 11,148 ms
コンパイル使用メモリ 429,872 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-05-11 05:48:14
合計ジャッジ時間 17,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
54,352 KB
testcase_01 AC 249 ms
54,308 KB
testcase_02 AC 254 ms
54,256 KB
testcase_03 AC 278 ms
54,144 KB
testcase_04 AC 243 ms
54,176 KB
testcase_05 AC 255 ms
54,256 KB
testcase_06 AC 248 ms
54,272 KB
testcase_07 AC 246 ms
54,276 KB
testcase_08 AC 273 ms
54,156 KB
testcase_09 AC 253 ms
54,148 KB
testcase_10 AC 258 ms
54,252 KB
testcase_11 AC 246 ms
54,336 KB
testcase_12 AC 276 ms
54,072 KB
testcase_13 AC 255 ms
54,268 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:7:18: warning: variable 'ANS' initializer is redundant
        var ANS =1L;
                 ^

ソースコード

diff #

fun main() {
    val t = readLine()!!.toInt()
    val mod = 998244353;

    repeat(t) {
        val N = readLine()!!.toInt()
        var ANS =1L;

        ANS=26*(26.toLong().modPow(N.toLong(),mod.toLong())-1)%mod * 25.toLong().modPow(mod.toLong()-2,mod.toLong())%mod

        println(ANS)
    }
}


private fun Long.modPow(exponent: Long, modulus: Long): Long {
    var result = 1L
    var exp = exponent
    var base = this % modulus
    while (exp > 0) {
        if (exp and 1 == 1L) {
            result = (result * base) % modulus
        }
        base = (base * base) % modulus
        exp = exp shr 1
    }
    return result
}
0