結果
問題 | No.780 オフ会 |
ユーザー | neko_the_shadow |
提出日時 | 2019-02-06 19:50:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 382 bytes |
コンパイル時間 | 1,998 ms |
コンパイル使用メモリ | 75,740 KB |
実行使用メモリ | 54,380 KB |
最終ジャッジ日時 | 2024-06-22 05:40:26 |
合計ジャッジ時間 | 5,493 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
53,816 KB |
testcase_01 | AC | 115 ms
54,116 KB |
testcase_02 | AC | 114 ms
54,044 KB |
testcase_03 | AC | 120 ms
53,836 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 116 ms
53,928 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 115 ms
53,932 KB |
testcase_10 | AC | 117 ms
54,040 KB |
testcase_11 | WA | - |
testcase_12 | AC | 117 ms
54,288 KB |
testcase_13 | AC | 115 ms
54,172 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 119 ms
54,212 KB |
testcase_17 | AC | 100 ms
52,820 KB |
testcase_18 | WA | - |
testcase_19 | AC | 106 ms
52,856 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner stdin = new Scanner(System.in); int a = stdin.nextInt(); int b = stdin.nextInt(); int c = Math.abs(a - b + 1); String answer = c == 0 ? "YES" : "NO"; System.out.println(answer); System.out.println(c); } }