結果

問題 No.863 計算量
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 11:08:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 299 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 77,384 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-11-20 19:10:19
合計ジャッジ時間 6,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,184 KB
testcase_01 AC 134 ms
41,540 KB
testcase_02 AC 136 ms
41,224 KB
testcase_03 AC 121 ms
40,164 KB
testcase_04 AC 135 ms
41,596 KB
testcase_05 AC 136 ms
41,412 KB
testcase_06 AC 135 ms
41,064 KB
testcase_07 AC 136 ms
41,308 KB
testcase_08 AC 135 ms
41,456 KB
testcase_09 AC 133 ms
41,464 KB
testcase_10 AC 136 ms
41,580 KB
testcase_11 AC 135 ms
41,328 KB
testcase_12 AC 136 ms
41,480 KB
testcase_13 AC 136 ms
41,720 KB
testcase_14 AC 136 ms
41,136 KB
testcase_15 AC 136 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1;
import java.util.Scanner;
public class Con863 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int A = s.nextInt() , B = s.nextInt();
		s.close();

		if(B/A < 1000){
			System.out.println("1");
		}else{
			System.out.println("2");
		}

	}

}
0