結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー titiatitia
提出日時 2024-05-11 05:50:51
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 1,116 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 12,796 ms
コンパイル使用メモリ 428,208 KB
実行使用メモリ 78,700 KB
最終ジャッジ日時 2024-12-20 08:17:29
合計ジャッジ時間 24,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
54,196 KB
testcase_01 AC 289 ms
54,284 KB
testcase_02 AC 290 ms
54,156 KB
testcase_03 AC 287 ms
54,324 KB
testcase_04 AC 285 ms
54,104 KB
testcase_05 AC 288 ms
54,116 KB
testcase_06 AC 290 ms
54,116 KB
testcase_07 AC 305 ms
53,968 KB
testcase_08 AC 298 ms
54,088 KB
testcase_09 AC 290 ms
54,340 KB
testcase_10 AC 287 ms
54,096 KB
testcase_11 AC 289 ms
54,104 KB
testcase_12 AC 305 ms
54,304 KB
testcase_13 AC 286 ms
54,172 KB
testcase_14 AC 350 ms
54,032 KB
testcase_15 AC 290 ms
54,164 KB
testcase_16 AC 288 ms
54,280 KB
testcase_17 AC 293 ms
54,116 KB
testcase_18 AC 292 ms
54,192 KB
testcase_19 AC 291 ms
54,292 KB
testcase_20 AC 880 ms
70,388 KB
testcase_21 AC 1,103 ms
78,620 KB
testcase_22 AC 1,091 ms
78,408 KB
testcase_23 AC 1,116 ms
78,560 KB
testcase_24 AC 1,066 ms
78,700 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:7:18: warning: variable 'ANS' initializer is redundant
        var ANS =1L;
                 ^

ソースコード

diff #

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

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

        ANS=26L*(26L.modPow(N,mod)-1)%mod * 25L.modPow(mod-2,mod)%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