結果

問題 No.780 オフ会
ユーザー GrenacheGrenache
提出日時 2019-04-26 15:29:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 75,652 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-11-24 12:51:48
合計ジャッジ時間 7,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,276 KB
testcase_01 AC 125 ms
40,196 KB
testcase_02 AC 126 ms
41,096 KB
testcase_03 AC 119 ms
41,684 KB
testcase_04 AC 124 ms
40,364 KB
testcase_05 AC 124 ms
41,424 KB
testcase_06 AC 127 ms
41,612 KB
testcase_07 AC 124 ms
41,156 KB
testcase_08 AC 124 ms
41,576 KB
testcase_09 AC 114 ms
41,288 KB
testcase_10 AC 120 ms
40,056 KB
testcase_11 AC 127 ms
41,320 KB
testcase_12 AC 114 ms
41,076 KB
testcase_13 AC 116 ms
41,548 KB
testcase_14 AC 124 ms
41,472 KB
testcase_15 AC 113 ms
41,456 KB
testcase_16 AC 119 ms
41,348 KB
testcase_17 AC 129 ms
41,452 KB
testcase_18 AC 118 ms
41,200 KB
testcase_19 AC 112 ms
41,564 KB
testcase_20 AC 120 ms
41,328 KB
testcase_21 AC 126 ms
41,768 KB
testcase_22 AC 128 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder780 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();

		if (a + 1 <= b) {
			pr.println("YES");
		} else {
			pr.println("NO");
		}
		pr.println(Math.abs(b - a - 1));
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0