結果

問題 No.780 オフ会
ユーザー shinwisteriashinwisteria
提出日時 2019-01-20 22:05:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 3,308 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-14 01:55:28
合計ジャッジ時間 7,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,016 KB
testcase_01 AC 129 ms
54,156 KB
testcase_02 AC 131 ms
53,968 KB
testcase_03 AC 130 ms
53,880 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 134 ms
54,084 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 134 ms
53,972 KB
testcase_10 AC 134 ms
53,876 KB
testcase_11 WA -
testcase_12 AC 138 ms
53,728 KB
testcase_13 AC 132 ms
54,008 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 134 ms
53,996 KB
testcase_17 AC 132 ms
54,108 KB
testcase_18 WA -
testcase_19 AC 130 ms
54,092 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No780 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int A = s.nextInt();
		int B = s.nextInt();
		s.close();
		if(A + 1 <= B){
			System.out.println("YES");
			System.out.println("0");
		}else{
			System.out.println("NO");
			System.out.println(A + 1 -B);
		}

	}

}
0