結果

問題 No.3023 素数判定するだけ
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 19:17:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 267 ms / 1,000 ms
コード長 381 bytes
コンパイル時間 10,447 ms
コンパイル使用メモリ 429,372 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-04-30 19:26:46
合計ジャッジ時間 19,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
54,224 KB
testcase_01 AC 239 ms
54,264 KB
testcase_02 AC 246 ms
54,264 KB
testcase_03 AC 254 ms
54,328 KB
testcase_04 AC 250 ms
54,244 KB
testcase_05 AC 263 ms
54,152 KB
testcase_06 AC 266 ms
54,128 KB
testcase_07 AC 260 ms
54,168 KB
testcase_08 AC 267 ms
54,148 KB
testcase_09 AC 256 ms
54,172 KB
testcase_10 AC 243 ms
54,260 KB
testcase_11 AC 247 ms
54,228 KB
testcase_12 AC 248 ms
54,344 KB
testcase_13 AC 249 ms
54,248 KB
testcase_14 AC 244 ms
54,252 KB
testcase_15 AC 244 ms
54,112 KB
testcase_16 AC 255 ms
54,140 KB
testcase_17 AC 247 ms
54,260 KB
testcase_18 AC 246 ms
54,240 KB
testcase_19 AC 254 ms
54,252 KB
testcase_20 AC 249 ms
54,240 KB
testcase_21 AC 251 ms
54,292 KB
testcase_22 AC 247 ms
54,156 KB
testcase_23 AC 244 ms
54,144 KB
testcase_24 AC 245 ms
54,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:17:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun judge(N: Int): Boolean {
    val zero = "".length
    val one = "a".length
    val two = "aa".length

    if (N == one) {
        return false
    }
    for (i in two until N) {
        if (N % i == zero) {
            return false
        }
    }
    return true
}

fun main(args: Array<String>) {
    val N = readLine()!!.toInt()
    println(if (judge(N)) "YES" else "NO")
}
0