結果

問題 No.780 オフ会
ユーザー トミートミー
提出日時 2024-04-01 19:20:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-09-30 21:57:57
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,296 KB
testcase_01 AC 98 ms
40,116 KB
testcase_02 AC 98 ms
40,148 KB
testcase_03 AC 108 ms
41,072 KB
testcase_04 AC 104 ms
41,304 KB
testcase_05 AC 107 ms
41,400 KB
testcase_06 AC 96 ms
39,676 KB
testcase_07 AC 99 ms
40,148 KB
testcase_08 AC 99 ms
40,148 KB
testcase_09 AC 96 ms
40,116 KB
testcase_10 AC 101 ms
40,020 KB
testcase_11 AC 109 ms
41,128 KB
testcase_12 AC 107 ms
40,968 KB
testcase_13 AC 107 ms
41,428 KB
testcase_14 AC 101 ms
39,808 KB
testcase_15 AC 103 ms
40,644 KB
testcase_16 AC 99 ms
40,264 KB
testcase_17 AC 101 ms
40,992 KB
testcase_18 AC 105 ms
40,812 KB
testcase_19 AC 108 ms
41,416 KB
testcase_20 AC 99 ms
39,896 KB
testcase_21 AC 115 ms
41,472 KB
testcase_22 AC 113 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if (a < b) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
        System.out.println(Math.abs(a - b + 1));

        sc.close();

    }
}
0