結果

問題 No.2736 About half
ユーザー tomoyatomoya
提出日時 2024-05-23 01:28:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-12-20 18:44:23
合計ジャッジ時間 5,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,324 KB
testcase_01 AC 133 ms
40,968 KB
testcase_02 AC 130 ms
41,444 KB
testcase_03 AC 130 ms
41,596 KB
testcase_04 AC 131 ms
41,508 KB
testcase_05 AC 137 ms
41,076 KB
testcase_06 AC 125 ms
40,188 KB
testcase_07 AC 133 ms
41,116 KB
testcase_08 AC 134 ms
41,136 KB
testcase_09 AC 137 ms
41,012 KB
testcase_10 AC 136 ms
41,196 KB
testcase_11 AC 131 ms
41,464 KB
testcase_12 AC 138 ms
41,168 KB
testcase_13 AC 133 ms
41,176 KB
testcase_14 AC 134 ms
41,156 KB
testcase_15 AC 143 ms
41,472 KB
testcase_16 AC 124 ms
40,320 KB
testcase_17 AC 123 ms
39,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int A = scanner.nextInt();
        int B = scanner.nextInt();

        // AliceとBobが文句を言わないかどうかを判定
        boolean canShareEqually = Math.abs(A - B) <= Math.min(A, B);

        if (canShareEqually) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
0