結果

問題 No.192 合成数
ユーザー javyjavy
提出日時 2015-11-12 11:22:34
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 11,966 ms
コンパイル使用メモリ 427,656 KB
実行使用メモリ 49,780 KB
最終ジャッジ日時 2024-11-19 20:24:23
合計ジャッジ時間 21,995 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
49,484 KB
testcase_01 AC 296 ms
49,692 KB
testcase_02 AC 297 ms
49,744 KB
testcase_03 AC 293 ms
49,724 KB
testcase_04 AC 295 ms
49,372 KB
testcase_05 AC 299 ms
49,616 KB
testcase_06 AC 296 ms
49,592 KB
testcase_07 AC 295 ms
49,780 KB
testcase_08 AC 292 ms
49,584 KB
testcase_09 AC 292 ms
49,588 KB
testcase_10 AC 294 ms
49,588 KB
testcase_11 AC 295 ms
49,760 KB
testcase_12 AC 297 ms
49,496 KB
testcase_13 AC 296 ms
49,380 KB
testcase_14 AC 296 ms
49,528 KB
testcase_15 AC 292 ms
49,480 KB
testcase_16 AC 295 ms
49,624 KB
testcase_17 AC 296 ms
49,744 KB
testcase_18 AC 293 ms
49,624 KB
testcase_19 AC 296 ms
49,612 KB
testcase_20 AC 292 ms
49,752 KB
testcase_21 AC 294 ms
49,700 KB
testcase_22 AC 293 ms
49,492 KB
testcase_23 AC 297 ms
49,656 KB
testcase_24 AC 293 ms
49,496 KB
testcase_25 AC 286 ms
49,600 KB
testcase_26 AC 292 ms
49,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

/**
 * Created by hichikawa on 2015/11/11.
 */
fun main(args: Array<String>) {
    fun readLineLong() : Long {
        val str = readLine() as String
        return str.toLong()
    }

    val  num = readLineLong()
    if (num != 2.toLong() && num % 2.toLong() == 0.toLong()) {
        println(num)
        return
    }

    val min = Math.max(4, num - 100)
    loop@
    for (i in min..(num+100)) {
        if (i.toInt() % 2 == 0) {
            println(i)
            break
        }
        for (j in 3..(i-1) step 2) {
            if (i.toInt() % j.toInt() == 0) {
                println(i)
                break@loop
            }
        }
    }
}
0