結果

問題 No.192 合成数
ユーザー javyjavy
提出日時 2015-11-11 17:16:02
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 12,571 ms
コンパイル使用メモリ 429,272 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-11-19 19:55:56
合計ジャッジ時間 23,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
53,732 KB
testcase_01 AC 282 ms
53,324 KB
testcase_02 AC 291 ms
53,616 KB
testcase_03 AC 285 ms
53,304 KB
testcase_04 AC 289 ms
53,308 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 283 ms
53,644 KB
testcase_09 AC 287 ms
53,712 KB
testcase_10 WA -
testcase_11 AC 289 ms
53,468 KB
testcase_12 WA -
testcase_13 AC 288 ms
53,588 KB
testcase_14 WA -
testcase_15 AC 285 ms
49,536 KB
testcase_16 WA -
testcase_17 AC 290 ms
49,520 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 282 ms
49,492 KB
testcase_22 AC 286 ms
49,616 KB
testcase_23 AC 296 ms
49,508 KB
testcase_24 AC 281 ms
49,676 KB
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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)
    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
            }
        }
    }
}
0