結果

問題 No.780 オフ会
ユーザー hirohiro
提出日時 2019-02-18 00:19:58
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 10,896 ms
コンパイル使用メモリ 428,208 KB
実行使用メモリ 51,140 KB
最終ジャッジ日時 2024-11-20 17:28:01
合計ジャッジ時間 16,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
50,940 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 288 ms
51,020 KB
testcase_05 AC 272 ms
50,840 KB
testcase_06 WA -
testcase_07 AC 275 ms
50,856 KB
testcase_08 AC 267 ms
51,016 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 266 ms
50,776 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 266 ms
50,788 KB
testcase_15 AC 271 ms
50,928 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 264 ms
51,140 KB
testcase_19 WA -
testcase_20 AC 275 ms
51,024 KB
testcase_21 AC 271 ms
50,700 KB
testcase_22 AC 257 ms
50,684 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 - B
    } else {
        println("YES")
        B - A - 1
    })
}
0