結果

問題 No.388 階段 (1)
ユーザー kazapyon27kazapyon27
提出日時 2017-05-02 22:53:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 3,185 ms
コンパイル使用メモリ 73,112 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-09-14 04:48:24
合計ジャッジ時間 4,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,832 KB
testcase_01 AC 49 ms
36,804 KB
testcase_02 AC 51 ms
36,500 KB
testcase_03 AC 50 ms
36,920 KB
testcase_04 AC 50 ms
36,964 KB
testcase_05 AC 51 ms
36,944 KB
testcase_06 AC 49 ms
36,992 KB
testcase_07 AC 50 ms
36,860 KB
testcase_08 AC 49 ms
36,500 KB
testcase_09 AC 49 ms
36,804 KB
testcase_10 AC 49 ms
36,888 KB
testcase_11 AC 48 ms
36,636 KB
testcase_12 AC 49 ms
36,644 KB
testcase_13 AC 50 ms
36,788 KB
testcase_14 AC 50 ms
36,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.388 階段 (1)*/
import java.io.*;
public class No388 {
	public static void main(String[] args) {
		int floor;
		String stair,Hairetsu[]=new String[2];
		try(BufferedReader input = new BufferedReader(new InputStreamReader(System.in))){
			stair=input.readLine();
			Hairetsu=stair.split(" ");
			floor=Short.parseShort(Hairetsu[0])/Byte.parseByte(Hairetsu[1])+1;
			System.out.println(floor);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0