結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー titiatitia
提出日時 2024-05-11 05:47:54
言語 Kotlin
(2.1.0)
結果
RE  
実行時間 -
コード長 635 bytes
コンパイル時間 12,245 ms
コンパイル使用メモリ 430,160 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-12-20 08:17:02
合計ジャッジ時間 21,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
54,076 KB
testcase_01 AC 291 ms
54,124 KB
testcase_02 AC 299 ms
54,160 KB
testcase_03 AC 296 ms
54,040 KB
testcase_04 AC 303 ms
54,112 KB
testcase_05 AC 301 ms
54,060 KB
testcase_06 AC 298 ms
54,020 KB
testcase_07 AC 296 ms
54,172 KB
testcase_08 AC 301 ms
54,076 KB
testcase_09 AC 303 ms
54,156 KB
testcase_10 AC 298 ms
54,276 KB
testcase_11 AC 303 ms
54,128 KB
testcase_12 AC 297 ms
54,228 KB
testcase_13 AC 310 ms
54,144 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