結果

問題 No.780 オフ会
ユーザー hirohiro
提出日時 2019-02-18 00:24:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 10,708 ms
コンパイル使用メモリ 424,180 KB
実行使用メモリ 51,108 KB
最終ジャッジ日時 2024-11-20 17:28:25
合計ジャッジ時間 18,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
50,804 KB
testcase_01 AC 303 ms
50,888 KB
testcase_02 AC 309 ms
50,828 KB
testcase_03 AC 311 ms
50,736 KB
testcase_04 AC 310 ms
50,968 KB
testcase_05 AC 307 ms
50,680 KB
testcase_06 AC 307 ms
50,792 KB
testcase_07 AC 306 ms
50,736 KB
testcase_08 AC 304 ms
50,936 KB
testcase_09 AC 303 ms
50,984 KB
testcase_10 AC 306 ms
50,784 KB
testcase_11 AC 306 ms
50,892 KB
testcase_12 AC 309 ms
51,100 KB
testcase_13 AC 311 ms
50,988 KB
testcase_14 AC 315 ms
50,688 KB
testcase_15 AC 319 ms
50,804 KB
testcase_16 AC 314 ms
50,988 KB
testcase_17 AC 312 ms
50,856 KB
testcase_18 AC 310 ms
51,108 KB
testcase_19 AC 307 ms
51,012 KB
testcase_20 AC 310 ms
50,988 KB
testcase_21 AC 318 ms
51,024 KB
testcase_22 AC 310 ms
50,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val AB = readLine()!!.split(" ")
    val A = AB[0].toInt()
    val B = AB[1].toInt()
    println(if(A + 1 == B){
        println("YES")
        0
    } else if(A + 1 > B){
        println("NO")
        A + 1 - B
    } else {
        println("YES")
        B - A - 1
    })
}
0