結果

問題 No.1027 U+1F4A0
ユーザー ks2mks2m
提出日時 2020-04-17 21:24:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 75,192 KB
実行使用メモリ 42,184 KB
最終ジャッジ日時 2024-10-03 10:57:40
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,452 KB
testcase_01 AC 108 ms
41,436 KB
testcase_02 AC 100 ms
41,332 KB
testcase_03 AC 115 ms
41,668 KB
testcase_04 AC 108 ms
41,484 KB
testcase_05 AC 100 ms
42,184 KB
testcase_06 AC 113 ms
41,564 KB
testcase_07 AC 107 ms
41,308 KB
testcase_08 AC 99 ms
41,272 KB
testcase_09 AC 102 ms
41,444 KB
testcase_10 AC 113 ms
41,384 KB
testcase_11 AC 115 ms
41,308 KB
testcase_12 AC 113 ms
41,372 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 110 ms
41,184 KB
testcase_17 AC 114 ms
41,300 KB
testcase_18 AC 121 ms
41,488 KB
testcase_19 AC 110 ms
40,344 KB
testcase_20 AC 110 ms
41,644 KB
testcase_21 AC 119 ms
41,696 KB
testcase_22 AC 114 ms
41,308 KB
testcase_23 AC 117 ms
41,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		double d1 = sc.nextInt();
		double d2 = sc.nextInt();
		sc.close();

		if (d1 > d2) {
			System.out.println(0);
		} else if (d1 == d2) {
			System.out.println(4);
		} else if (d1 < d2 / 2) {
			System.out.println(0);
		} else {
			System.out.println(8);
		}
	}
}
0