結果

問題 No.780 オフ会
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-20 10:04:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 3,734 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 55,808 KB
最終ジャッジ日時 2024-06-01 10:54:00
合計ジャッジ時間 7,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,840 KB
testcase_01 AC 129 ms
53,956 KB
testcase_02 AC 128 ms
54,064 KB
testcase_03 AC 125 ms
54,080 KB
testcase_04 AC 113 ms
52,996 KB
testcase_05 AC 123 ms
54,060 KB
testcase_06 AC 125 ms
53,960 KB
testcase_07 AC 124 ms
54,052 KB
testcase_08 AC 128 ms
54,036 KB
testcase_09 AC 127 ms
55,808 KB
testcase_10 AC 128 ms
53,944 KB
testcase_11 AC 126 ms
54,196 KB
testcase_12 AC 129 ms
53,944 KB
testcase_13 AC 126 ms
53,908 KB
testcase_14 AC 127 ms
54,032 KB
testcase_15 AC 125 ms
54,220 KB
testcase_16 AC 128 ms
54,196 KB
testcase_17 AC 135 ms
53,996 KB
testcase_18 AC 127 ms
53,944 KB
testcase_19 AC 127 ms
53,980 KB
testcase_20 AC 125 ms
53,804 KB
testcase_21 AC 126 ms
54,040 KB
testcase_22 AC 129 ms
54,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/780
public class OfflineParty780 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int a = Integer.parseInt(sc.next());
    int b = Integer.parseInt(sc.next());
    if (b - a >= 1) {
      System.out.println("YES");
      System.out.println(b - a - 1);
    } else {
      System.out.println("NO");
      System.out.println(a - b + 1);
    }

  }
}
0