結果

問題 No.1027 U+1F4A0
ユーザー face4face4
提出日時 2020-08-06 10:15:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 73,752 KB
実行使用メモリ 37,408 KB
最終ジャッジ日時 2024-09-19 08:56:42
合計ジャッジ時間 4,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,216 KB
testcase_01 AC 51 ms
37,408 KB
testcase_02 AC 52 ms
36,960 KB
testcase_03 AC 52 ms
36,956 KB
testcase_04 AC 51 ms
37,052 KB
testcase_05 AC 50 ms
37,256 KB
testcase_06 AC 51 ms
37,336 KB
testcase_07 AC 51 ms
37,212 KB
testcase_08 AC 53 ms
37,348 KB
testcase_09 AC 51 ms
37,252 KB
testcase_10 AC 52 ms
37,224 KB
testcase_11 AC 51 ms
36,972 KB
testcase_12 AC 51 ms
37,168 KB
testcase_13 AC 52 ms
36,848 KB
testcase_14 AC 51 ms
37,324 KB
testcase_15 AC 51 ms
37,096 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 51 ms
37,216 KB
testcase_23 AC 51 ms
37,052 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(" ");
        final double eps = 1e-6;
        double d1 = Double.parseDouble(line[0]);
        double d2 = Double.parseDouble(line[1]);
        int ans = 0;
        if(d1+d1==d2 || d1==d2){
            ans = 4;
        }else if(d2/4+eps < d1 && d1+eps < d2){
            ans = 8;
        }
        System.out.println(ans);
    }
}
0