結果

問題 No.36 素数が嫌い!
ユーザー バカらっくバカらっく
提出日時 2019-09-07 19:32:10
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 394 ms / 5,000 ms
コード長 631 bytes
コンパイル時間 10,155 ms
コンパイル使用メモリ 433,944 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-06-27 02:08:04
合計ジャッジ時間 20,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
54,348 KB
testcase_01 AC 285 ms
54,160 KB
testcase_02 AC 280 ms
54,256 KB
testcase_03 AC 276 ms
54,192 KB
testcase_04 AC 278 ms
54,088 KB
testcase_05 AC 282 ms
54,076 KB
testcase_06 AC 280 ms
54,312 KB
testcase_07 AC 279 ms
53,960 KB
testcase_08 AC 275 ms
54,084 KB
testcase_09 AC 284 ms
54,032 KB
testcase_10 AC 277 ms
54,084 KB
testcase_11 AC 318 ms
54,092 KB
testcase_12 AC 394 ms
54,204 KB
testcase_13 AC 389 ms
54,184 KB
testcase_14 AC 277 ms
54,156 KB
testcase_15 AC 281 ms
54,100 KB
testcase_16 AC 275 ms
54,360 KB
testcase_17 AC 275 ms
53,944 KB
testcase_18 AC 276 ms
54,008 KB
testcase_19 AC 280 ms
54,176 KB
testcase_20 AC 283 ms
54,176 KB
testcase_21 AC 277 ms
54,232 KB
testcase_22 AC 281 ms
54,180 KB
testcase_23 AC 275 ms
54,096 KB
testcase_24 AC 300 ms
54,160 KB
testcase_25 AC 281 ms
54,144 KB
testcase_26 AC 349 ms
54,244 KB
testcase_27 AC 377 ms
54,304 KB
testcase_28 AC 353 ms
54,100 KB
testcase_29 AC 389 ms
54,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val num = readLine()!!.toLong()
    val ans = if(canUse(num)) "YES" else "NO"
    println(ans)
}

fun canUse(num:Long):Boolean {
    var cur = 2.toLong()
    var target = num;
    var ans = 0
    while (target > 1.toLong() && cur <= target && cur*cur<num) {
        var cnt = 0
        while (target % cur == 0.toLong()) {
            cnt++;
            target = target / cur
            if(cnt >= 2 && target > 1) {
                return true
            }
        }
        ans += cnt
        cur++
        if(ans >= 2 && target > 1) {
            return true
        }
    }
    return false
}
0