結果

問題 No.863 計算量
ユーザー ks2mks2m
提出日時 2019-08-16 21:23:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 301 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-09-22 14:53:30
合計ジャッジ時間 4,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
52,768 KB
testcase_01 AC 131 ms
54,116 KB
testcase_02 AC 131 ms
53,912 KB
testcase_03 AC 129 ms
54,224 KB
testcase_04 AC 130 ms
54,272 KB
testcase_05 AC 131 ms
54,164 KB
testcase_06 AC 131 ms
53,904 KB
testcase_07 AC 127 ms
53,972 KB
testcase_08 AC 129 ms
54,136 KB
testcase_09 AC 118 ms
52,780 KB
testcase_10 AC 117 ms
52,628 KB
testcase_11 AC 131 ms
53,920 KB
testcase_12 AC 132 ms
53,916 KB
testcase_13 AC 135 ms
53,928 KB
testcase_14 AC 116 ms
53,100 KB
testcase_15 AC 129 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		if (b / a < 100) {
			System.out.println(1);
		} else {
			System.out.println(2);
		}
	}
}
0