結果

問題 No.780 オフ会
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 21:54:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 75,060 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-10-12 21:32:40
合計ジャッジ時間 5,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,996 KB
testcase_01 AC 130 ms
41,136 KB
testcase_02 AC 128 ms
41,136 KB
testcase_03 AC 128 ms
41,416 KB
testcase_04 AC 113 ms
40,120 KB
testcase_05 AC 128 ms
41,184 KB
testcase_06 AC 115 ms
39,992 KB
testcase_07 AC 127 ms
41,196 KB
testcase_08 AC 113 ms
39,880 KB
testcase_09 AC 129 ms
41,076 KB
testcase_10 AC 130 ms
41,136 KB
testcase_11 AC 119 ms
40,644 KB
testcase_12 AC 125 ms
41,252 KB
testcase_13 AC 127 ms
41,096 KB
testcase_14 AC 124 ms
41,168 KB
testcase_15 AC 126 ms
41,488 KB
testcase_16 AC 126 ms
41,056 KB
testcase_17 AC 129 ms
41,004 KB
testcase_18 AC 107 ms
39,544 KB
testcase_19 AC 128 ms
41,212 KB
testcase_20 AC 126 ms
41,484 KB
testcase_21 AC 122 ms
41,276 KB
testcase_22 AC 128 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

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