結果

問題 No.773 コンテスト
ユーザー GrenacheGrenache
提出日時 2019-04-26 15:42:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 3,233 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-05-03 13:00:21
合計ジャッジ時間 7,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,264 KB
testcase_01 AC 114 ms
40,016 KB
testcase_02 AC 127 ms
41,144 KB
testcase_03 AC 127 ms
41,392 KB
testcase_04 AC 121 ms
40,116 KB
testcase_05 AC 129 ms
41,484 KB
testcase_06 AC 128 ms
41,280 KB
testcase_07 AC 127 ms
41,160 KB
testcase_08 AC 128 ms
41,392 KB
testcase_09 AC 130 ms
41,440 KB
testcase_10 AC 125 ms
41,476 KB
testcase_11 AC 128 ms
41,352 KB
testcase_12 AC 128 ms
41,372 KB
testcase_13 AC 132 ms
41,600 KB
testcase_14 AC 128 ms
41,204 KB
testcase_15 AC 131 ms
41,168 KB
testcase_16 AC 119 ms
40,272 KB
testcase_17 AC 114 ms
41,256 KB
testcase_18 AC 121 ms
40,076 KB
testcase_19 AC 126 ms
41,228 KB
testcase_20 AC 120 ms
39,976 KB
testcase_21 AC 126 ms
41,648 KB
testcase_22 AC 115 ms
41,044 KB
testcase_23 AC 126 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder773 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int a = sc.nextInt();
		int b = sc.nextInt();

		if (b < 23 || a > 25) {
			pr.println(3);
		} else {
			int min = Math.max(23, a);
			int max = Math.min(25, b);
			pr.println(3 - (max - min + 1));
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0