結果

問題 No.998 Four Integers
ユーザー rhincodon66rhincodon66
提出日時 2020-02-28 21:21:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 1,000 ms
コード長 269 bytes
コンパイル時間 13,007 ms
コンパイル使用メモリ 438,560 KB
実行使用メモリ 60,468 KB
最終ジャッジ日時 2024-11-30 22:58:35
合計ジャッジ時間 21,894 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
60,308 KB
testcase_01 AC 322 ms
60,240 KB
testcase_02 AC 315 ms
60,260 KB
testcase_03 AC 312 ms
60,296 KB
testcase_04 AC 317 ms
60,352 KB
testcase_05 AC 321 ms
60,192 KB
testcase_06 AC 314 ms
60,308 KB
testcase_07 AC 332 ms
60,320 KB
testcase_08 AC 321 ms
60,348 KB
testcase_09 AC 321 ms
60,296 KB
testcase_10 AC 316 ms
60,312 KB
testcase_11 AC 322 ms
60,192 KB
testcase_12 AC 323 ms
60,380 KB
testcase_13 AC 314 ms
60,200 KB
testcase_14 AC 312 ms
60,468 KB
testcase_15 AC 318 ms
60,320 KB
testcase_16 AC 317 ms
60,240 KB
testcase_17 AC 313 ms
60,216 KB
testcase_18 AC 315 ms
60,172 KB
testcase_19 AC 314 ms
60,208 KB
testcase_20 AC 315 ms
60,352 KB
testcase_21 AC 314 ms
60,396 KB
testcase_22 AC 333 ms
60,332 KB
testcase_23 AC 313 ms
60,184 KB
testcase_24 AC 314 ms
60,324 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