結果

問題 No.1027 U+1F4A0
ユーザー ks2mks2m
提出日時 2020-04-17 21:22:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-10-03 10:48:46
合計ジャッジ時間 5,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,116 KB
testcase_01 WA -
testcase_02 AC 97 ms
41,016 KB
testcase_03 AC 111 ms
41,184 KB
testcase_04 AC 107 ms
41,208 KB
testcase_05 AC 109 ms
41,112 KB
testcase_06 AC 98 ms
41,180 KB
testcase_07 AC 99 ms
41,616 KB
testcase_08 AC 111 ms
41,004 KB
testcase_09 AC 102 ms
41,300 KB
testcase_10 AC 120 ms
41,280 KB
testcase_11 AC 113 ms
41,360 KB
testcase_12 AC 114 ms
41,192 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 108 ms
41,084 KB
testcase_23 AC 107 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

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