結果

問題 No.780 オフ会
ユーザー Hayato-KokubuHayato-Kokubu
提出日時 2019-01-20 16:21:35
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 10,885 ms
コンパイル使用メモリ 247,156 KB
実行使用メモリ 64,856 KB
最終ジャッジ日時 2024-07-01 10:26:33
合計ジャッジ時間 31,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 937 ms
64,368 KB
testcase_01 AC 926 ms
64,616 KB
testcase_02 AC 928 ms
64,548 KB
testcase_03 AC 919 ms
64,520 KB
testcase_04 AC 930 ms
64,524 KB
testcase_05 AC 921 ms
64,752 KB
testcase_06 AC 930 ms
64,796 KB
testcase_07 AC 924 ms
64,764 KB
testcase_08 AC 922 ms
64,716 KB
testcase_09 AC 922 ms
64,680 KB
testcase_10 AC 925 ms
64,740 KB
testcase_11 AC 921 ms
64,772 KB
testcase_12 AC 917 ms
64,536 KB
testcase_13 AC 923 ms
64,548 KB
testcase_14 AC 933 ms
64,620 KB
testcase_15 AC 927 ms
64,732 KB
testcase_16 AC 930 ms
64,440 KB
testcase_17 AC 927 ms
64,588 KB
testcase_18 AC 930 ms
64,440 KB
testcase_19 AC 936 ms
64,432 KB
testcase_20 AC 944 ms
64,856 KB
testcase_21 AC 944 ms
64,460 KB
testcase_22 AC 922 ms
64,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Yuki780 {
  val sc = new Scanner(System.in)
  def main(args: Array[String]): Unit ={
    val a = sc.nextInt
    val b = sc.nextInt

    println(if(b - (a + 1) >= 0) "YES" else "NO")
    println(Math.abs(b - (a + 1)))

  }

}
0