結果

問題 No.1027 U+1F4A0
ユーザー face4face4
提出日時 2020-08-06 10:11:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 4,284 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 50,564 KB
最終ジャッジ日時 2024-09-19 08:51:58
合計ジャッジ時間 3,822 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,516 KB
testcase_01 AC 48 ms
50,092 KB
testcase_02 AC 47 ms
50,208 KB
testcase_03 AC 50 ms
50,248 KB
testcase_04 AC 48 ms
50,368 KB
testcase_05 AC 49 ms
50,484 KB
testcase_06 AC 49 ms
50,420 KB
testcase_07 AC 48 ms
50,508 KB
testcase_08 AC 48 ms
50,528 KB
testcase_09 AC 49 ms
50,264 KB
testcase_10 AC 48 ms
50,144 KB
testcase_11 AC 49 ms
50,404 KB
testcase_12 AC 49 ms
50,384 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 48 ms
50,252 KB
testcase_23 AC 50 ms
50,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ");
        double d1 = Double.parseDouble(line[0]);
        double d2 = Double.parseDouble(line[1]);
        int ans = 0;
        if(Math.abs(d1-d2/4) < 1e-6 || Math.abs(d1-d2) < 1e-6){
            ans = 4;
        }else if(d2/4 < d1 && d1 < d2){
            ans = 8;
        }
        System.out.println(ans);
    }
}
0