結果

問題 No.780 オフ会
ユーザー hnthnt
提出日時 2019-02-04 20:13:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 3,057 ms
コンパイル使用メモリ 76,320 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-06-07 16:56:11
合計ジャッジ時間 6,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,652 KB
testcase_01 AC 120 ms
41,340 KB
testcase_02 AC 119 ms
41,160 KB
testcase_03 AC 104 ms
41,320 KB
testcase_04 AC 118 ms
41,496 KB
testcase_05 AC 118 ms
40,788 KB
testcase_06 AC 118 ms
41,292 KB
testcase_07 AC 116 ms
41,240 KB
testcase_08 AC 105 ms
40,068 KB
testcase_09 AC 108 ms
40,572 KB
testcase_10 AC 107 ms
39,828 KB
testcase_11 AC 115 ms
41,212 KB
testcase_12 AC 104 ms
39,676 KB
testcase_13 AC 104 ms
39,776 KB
testcase_14 AC 116 ms
41,212 KB
testcase_15 AC 116 ms
40,988 KB
testcase_16 AC 115 ms
41,436 KB
testcase_17 AC 115 ms
40,976 KB
testcase_18 AC 106 ms
41,036 KB
testcase_19 AC 117 ms
41,204 KB
testcase_20 AC 115 ms
41,068 KB
testcase_21 AC 113 ms
40,368 KB
testcase_22 AC 117 ms
41,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class no780 {
    public static void main(String[] args) {
       Scanner sc = new Scanner(System.in); 
       final int A = sc.nextInt();
       final int B = sc.nextInt();
       final int YASUO = A + 1;

       if (YASUO <= B) {
           System.out.println("YES");
       } else {
           System.out.println("NO");
       }

       System.out.println("" + Math.abs(YASUO - B));
    }
}
0