結果

問題 No.388 階段 (1)
ユーザー yugi0922yugi0922
提出日時 2020-06-11 08:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 3,522 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-06-24 02:49:01
合計ジャッジ時間 6,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,752 KB
testcase_01 AC 140 ms
54,188 KB
testcase_02 AC 128 ms
53,848 KB
testcase_03 AC 130 ms
54,084 KB
testcase_04 AC 132 ms
53,844 KB
testcase_05 AC 130 ms
53,752 KB
testcase_06 AC 132 ms
54,500 KB
testcase_07 AC 130 ms
53,916 KB
testcase_08 AC 135 ms
53,768 KB
testcase_09 AC 130 ms
53,980 KB
testcase_10 AC 131 ms
54,236 KB
testcase_11 AC 133 ms
54,124 KB
testcase_12 AC 128 ms
53,852 KB
testcase_13 AC 127 ms
53,980 KB
testcase_14 AC 130 ms
53,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;

public class Stair {
	public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
		BufferedReader reader = new BufferedReader(new InputStreamReader(in));
		String[] inputs = reader.readLine().split(" ");
		int S = Integer.parseInt(inputs[0]);
		int F = Integer.parseInt(inputs[1]);
		System.out.println(S / F + 1);
	}
}
0