結果

問題 No.388 階段 (1)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 20:26:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 3,110 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-05-01 15:15:46
合計ジャッジ時間 5,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,692 KB
testcase_01 AC 124 ms
53,916 KB
testcase_02 AC 120 ms
53,720 KB
testcase_03 AC 112 ms
53,940 KB
testcase_04 AC 117 ms
54,084 KB
testcase_05 AC 112 ms
53,976 KB
testcase_06 AC 114 ms
54,148 KB
testcase_07 AC 104 ms
53,136 KB
testcase_08 AC 126 ms
53,852 KB
testcase_09 AC 124 ms
53,760 KB
testcase_10 AC 108 ms
52,908 KB
testcase_11 AC 113 ms
53,984 KB
testcase_12 AC 106 ms
52,940 KB
testcase_13 AC 109 ms
53,252 KB
testcase_14 AC 104 ms
53,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No388 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        Integer stage = s.nextInt();
        Integer height = s.nextInt();
        System.out.println(stage / height + 1);
    }
}
0