結果

問題 No.780 オフ会
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-20 10:04:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 3,796 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-12-21 16:42:18
合計ジャッジ時間 8,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,152 KB
testcase_01 AC 139 ms
41,072 KB
testcase_02 AC 141 ms
41,132 KB
testcase_03 AC 136 ms
41,140 KB
testcase_04 AC 140 ms
41,068 KB
testcase_05 AC 139 ms
41,196 KB
testcase_06 AC 137 ms
41,192 KB
testcase_07 AC 141 ms
40,932 KB
testcase_08 AC 141 ms
41,360 KB
testcase_09 AC 141 ms
40,880 KB
testcase_10 AC 150 ms
41,284 KB
testcase_11 AC 141 ms
41,140 KB
testcase_12 AC 143 ms
41,404 KB
testcase_13 AC 130 ms
40,144 KB
testcase_14 AC 149 ms
41,376 KB
testcase_15 AC 149 ms
40,872 KB
testcase_16 AC 139 ms
41,124 KB
testcase_17 AC 142 ms
41,272 KB
testcase_18 AC 140 ms
41,344 KB
testcase_19 AC 143 ms
41,128 KB
testcase_20 AC 140 ms
41,068 KB
testcase_21 AC 143 ms
41,168 KB
testcase_22 AC 144 ms
41,020 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