結果

問題 No.1396 Giri
ユーザー CuriousFairy315CuriousFairy315
提出日時 2021-02-14 22:18:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 12,835 ms
コンパイル使用メモリ 432,196 KB
実行使用メモリ 87,488 KB
最終ジャッジ日時 2024-07-22 10:03:52
合計ジャッジ時間 21,211 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
60,032 KB
testcase_01 AC 289 ms
59,928 KB
testcase_02 AC 386 ms
87,300 KB
testcase_03 AC 283 ms
60,108 KB
testcase_04 AC 284 ms
60,024 KB
testcase_05 AC 408 ms
87,452 KB
testcase_06 AC 300 ms
60,192 KB
testcase_07 AC 303 ms
59,956 KB
testcase_08 AC 290 ms
60,092 KB
testcase_09 AC 288 ms
60,024 KB
testcase_10 AC 295 ms
59,996 KB
testcase_11 AC 289 ms
60,160 KB
testcase_12 AC 289 ms
59,980 KB
testcase_13 AC 284 ms
59,852 KB
testcase_14 AC 291 ms
60,064 KB
testcase_15 AC 286 ms
60,000 KB
testcase_16 AC 290 ms
59,972 KB
testcase_17 AC 306 ms
60,204 KB
testcase_18 AC 323 ms
62,324 KB
testcase_19 AC 353 ms
74,612 KB
testcase_20 AC 365 ms
78,844 KB
testcase_21 AC 396 ms
87,364 KB
testcase_22 AC 402 ms
87,412 KB
testcase_23 AC 390 ms
87,176 KB
testcase_24 AC 399 ms
87,180 KB
testcase_25 AC 394 ms
87,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

fun main(args:Array<String>){
    val N = readLine()!!.toInt()
    val sieve = BooleanArray(N+1){it>=2}
    for (i in 2..N) for (j in 2*i..N step i) sieve[j] = false
    val prime = sieve.withIndex().filter{it.value}.map{it.index}
    var ans = 1L
    val M = 998_244_353L
    for (i in prime.dropLast(1)){
        var j = i.toLong()
        while(j*i<=N)j*=i
        ans=ans*j%M
    }
    println(ans)
}
0