結果

問題 No.1027 U+1F4A0
ユーザー yomo3yomo3
提出日時 2020-05-08 13:56:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 74,012 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-07-03 09:50:13
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,992 KB
testcase_01 AC 135 ms
54,236 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 134 ms
53,956 KB
testcase_06 AC 134 ms
54,096 KB
testcase_07 AC 134 ms
54,376 KB
testcase_08 AC 133 ms
53,892 KB
testcase_09 AC 131 ms
54,072 KB
testcase_10 AC 134 ms
54,372 KB
testcase_11 AC 132 ms
54,172 KB
testcase_12 AC 134 ms
54,216 KB
testcase_13 AC 135 ms
54,340 KB
testcase_14 AC 133 ms
54,088 KB
testcase_15 AC 132 ms
53,936 KB
testcase_16 AC 132 ms
54,168 KB
testcase_17 AC 133 ms
53,880 KB
testcase_18 AC 132 ms
54,044 KB
testcase_19 AC 132 ms
54,208 KB
testcase_20 AC 132 ms
54,264 KB
testcase_21 AC 134 ms
53,688 KB
testcase_22 AC 133 ms
54,004 KB
testcase_23 AC 131 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int D1 = sc.nextInt();
        int D2 = sc.nextInt();
        int ans;
        if (D2 < 0 || 2 * D1 < D2) {
            ans = 0;
        } else if (D1 == D2 || 2 * D1 == D2) {
            ans = 4;
        } else {
            ans = 8;
        }
        System.out.println(ans);
    }
}
0