結果

問題 No.388 階段 (1)
ユーザー GchansanjouGchansanjou
提出日時 2018-02-10 01:22:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 37,348 KB
最終ジャッジ日時 2024-10-09 09:15:20
合計ジャッジ時間 5,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,348 KB
testcase_01 AC 54 ms
37,232 KB
testcase_02 AC 53 ms
37,204 KB
testcase_03 AC 53 ms
37,284 KB
testcase_04 AC 53 ms
37,212 KB
testcase_05 AC 51 ms
37,204 KB
testcase_06 AC 53 ms
37,048 KB
testcase_07 AC 53 ms
37,316 KB
testcase_08 AC 54 ms
37,204 KB
testcase_09 AC 54 ms
36,712 KB
testcase_10 AC 54 ms
36,988 KB
testcase_11 AC 53 ms
37,208 KB
testcase_12 AC 53 ms
37,220 KB
testcase_13 AC 53 ms
36,992 KB
testcase_14 AC 52 ms
37,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00388 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));

		try {
			String[] input = new String[2];
			input = bufferedReader.readLine().split(" ");
			int stepCount = Integer.parseInt(input[0]);
			Integer houseHight = Integer.parseInt(input[1]);

			if (stepCount == 0) {
				System.out.println("1");
				return;
			} else {
				int count = 1;
				count += (int) (stepCount/houseHight);
				System.out.println(count);
			}
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

}
0