結果

問題 No.2752 文字列の数え上げ mod 998244353
ユーザー titiatitia
提出日時 2024-05-11 05:50:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 979 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 10,917 ms
コンパイル使用メモリ 425,528 KB
実行使用メモリ 78,612 KB
最終ジャッジ日時 2024-05-11 05:51:16
合計ジャッジ時間 21,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
54,248 KB
testcase_01 AC 260 ms
54,068 KB
testcase_02 AC 252 ms
54,068 KB
testcase_03 AC 276 ms
54,156 KB
testcase_04 AC 253 ms
54,148 KB
testcase_05 AC 246 ms
54,292 KB
testcase_06 AC 247 ms
54,164 KB
testcase_07 AC 260 ms
54,076 KB
testcase_08 AC 250 ms
54,236 KB
testcase_09 AC 248 ms
54,164 KB
testcase_10 AC 254 ms
54,268 KB
testcase_11 AC 253 ms
54,168 KB
testcase_12 AC 275 ms
54,152 KB
testcase_13 AC 249 ms
54,072 KB
testcase_14 AC 251 ms
54,316 KB
testcase_15 AC 262 ms
54,296 KB
testcase_16 AC 256 ms
54,192 KB
testcase_17 AC 277 ms
54,280 KB
testcase_18 AC 252 ms
54,280 KB
testcase_19 AC 257 ms
54,436 KB
testcase_20 AC 802 ms
70,432 KB
testcase_21 AC 979 ms
78,612 KB
testcase_22 AC 941 ms
78,580 KB
testcase_23 AC 960 ms
78,436 KB
testcase_24 AC 953 ms
78,584 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