結果

問題 No.46 はじめのn歩
ユーザー kano_townkano_town
提出日時 2014-11-18 14:52:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 2,724 ms
コンパイル使用メモリ 72,956 KB
実行使用メモリ 37,128 KB
最終ジャッジ日時 2024-06-10 20:02:03
合計ジャッジ時間 3,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,904 KB
testcase_01 AC 44 ms
36,660 KB
testcase_02 AC 43 ms
36,984 KB
testcase_03 AC 43 ms
37,000 KB
testcase_04 AC 47 ms
37,100 KB
testcase_05 AC 44 ms
36,872 KB
testcase_06 AC 44 ms
37,036 KB
testcase_07 AC 45 ms
37,128 KB
testcase_08 AC 45 ms
37,092 KB
testcase_09 AC 44 ms
37,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Test {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] buf = br.readLine().split(" ");

		int a = Integer.parseInt(buf[0]);
		int b = Integer.parseInt(buf[1]);

		System.out.println((int) Math.ceil((double) b / (double) a));
	}
}
0