結果

問題 No.998 Four Integers
ユーザー rhincodon66rhincodon66
提出日時 2020-02-28 21:21:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 1,000 ms
コード長 269 bytes
コンパイル時間 11,328 ms
コンパイル使用メモリ 436,960 KB
実行使用メモリ 60,436 KB
最終ジャッジ日時 2024-05-08 01:29:03
合計ジャッジ時間 19,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
60,376 KB
testcase_01 AC 300 ms
60,352 KB
testcase_02 AC 301 ms
60,288 KB
testcase_03 AC 293 ms
60,288 KB
testcase_04 AC 291 ms
60,296 KB
testcase_05 AC 291 ms
60,336 KB
testcase_06 AC 297 ms
60,244 KB
testcase_07 AC 288 ms
60,364 KB
testcase_08 AC 297 ms
60,356 KB
testcase_09 AC 289 ms
60,344 KB
testcase_10 AC 283 ms
60,284 KB
testcase_11 AC 286 ms
60,248 KB
testcase_12 AC 285 ms
60,208 KB
testcase_13 AC 296 ms
60,308 KB
testcase_14 AC 300 ms
60,240 KB
testcase_15 AC 287 ms
60,172 KB
testcase_16 AC 293 ms
60,356 KB
testcase_17 AC 292 ms
60,356 KB
testcase_18 AC 289 ms
60,276 KB
testcase_19 AC 288 ms
60,292 KB
testcase_20 AC 292 ms
60,300 KB
testcase_21 AC 300 ms
60,436 KB
testcase_22 AC 290 ms
60,180 KB
testcase_23 AC 292 ms
60,344 KB
testcase_24 AC 293 ms
60,300 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

import java.util.*

fun main(args:Array<String>){
    solve()
}

fun solve(){
    val a = readLine()!!.split(" ").map{it.toInt()}.sorted()
    var ok = true
    for(i in 0 until 3){
        if(a[i] + 1 != a[i + 1]) ok = false
    }
    println(if(ok) "Yes" else "No")
}
0