結果

問題 No.388 階段 (1)
ユーザー show258show258
提出日時 2017-03-27 21:50:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 2,875 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-07-06 09:51:23
合計ジャッジ時間 5,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,016 KB
testcase_01 AC 114 ms
53,972 KB
testcase_02 AC 106 ms
53,092 KB
testcase_03 AC 115 ms
54,000 KB
testcase_04 AC 105 ms
52,944 KB
testcase_05 AC 101 ms
52,800 KB
testcase_06 AC 124 ms
53,952 KB
testcase_07 AC 106 ms
52,876 KB
testcase_08 AC 114 ms
54,040 KB
testcase_09 AC 101 ms
54,068 KB
testcase_10 AC 102 ms
53,980 KB
testcase_11 AC 114 ms
54,080 KB
testcase_12 AC 116 ms
54,300 KB
testcase_13 AC 103 ms
52,840 KB
testcase_14 AC 135 ms
53,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No388 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int ステア君が現在居る段数 S
        int s = sc.nextInt();

        // int ステア君の家の一階層分に相当する段数 F
        int f = sc.nextInt();

        sc.close();

        System.out.println( 1+ s/f  );

    }
}
0