結果

問題 No.388 階段 (1)
ユーザー h-arakakih-arakaki
提出日時 2019-03-12 10:27:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 3,055 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-06-23 15:44:24
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,768 KB
testcase_01 AC 126 ms
54,164 KB
testcase_02 AC 133 ms
54,420 KB
testcase_03 AC 127 ms
53,916 KB
testcase_04 AC 107 ms
52,936 KB
testcase_05 AC 110 ms
53,268 KB
testcase_06 AC 108 ms
52,948 KB
testcase_07 AC 126 ms
53,840 KB
testcase_08 AC 126 ms
54,348 KB
testcase_09 AC 106 ms
53,020 KB
testcase_10 AC 122 ms
54,192 KB
testcase_11 AC 120 ms
54,120 KB
testcase_12 AC 117 ms
53,032 KB
testcase_13 AC 128 ms
53,876 KB
testcase_14 AC 127 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Stairs {
	public static void main(String[] args) {
		int s_row_spot;//s段目
		int steps_f;//一階層分に相当する段数f

		Scanner sc = new Scanner(System.in);
		s_row_spot = sc.nextInt();
		steps_f = sc.nextInt();
		System.out.println(s_row_spot / steps_f + 1);
		sc.close();

	}
}
0