結果

問題 No.773 コンテスト
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-12 19:09:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-09-13 09:45:40
合計ジャッジ時間 6,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,228 KB
testcase_01 AC 130 ms
53,992 KB
testcase_02 AC 131 ms
54,144 KB
testcase_03 AC 132 ms
54,296 KB
testcase_04 AC 132 ms
54,140 KB
testcase_05 AC 132 ms
54,064 KB
testcase_06 AC 130 ms
54,124 KB
testcase_07 AC 130 ms
53,876 KB
testcase_08 AC 130 ms
54,048 KB
testcase_09 AC 131 ms
54,268 KB
testcase_10 AC 132 ms
54,008 KB
testcase_11 AC 132 ms
53,784 KB
testcase_12 AC 132 ms
54,036 KB
testcase_13 AC 133 ms
54,288 KB
testcase_14 AC 132 ms
54,240 KB
testcase_15 AC 132 ms
54,000 KB
testcase_16 AC 130 ms
54,180 KB
testcase_17 AC 132 ms
54,120 KB
testcase_18 AC 133 ms
54,012 KB
testcase_19 AC 132 ms
54,076 KB
testcase_20 AC 128 ms
53,964 KB
testcase_21 AC 130 ms
53,944 KB
testcase_22 AC 134 ms
54,004 KB
testcase_23 AC 132 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int a = sc.nextInt(); int b = sc.nextInt();
		int ans = 3;
		if (a<=23 && 23<=b) ans--;
		if (a<=24 && 24<=b) ans--;
		if (a<=25 && 25<=b) ans--;
		System.out.println(ans);
		
	}
}
0