結果

問題 No.388 階段 (1)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 20:26:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 3,452 ms
コンパイル使用メモリ 75,832 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-11-21 20:09:01
合計ジャッジ時間 6,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,512 KB
testcase_01 AC 133 ms
41,236 KB
testcase_02 AC 130 ms
41,192 KB
testcase_03 AC 133 ms
41,304 KB
testcase_04 AC 133 ms
41,144 KB
testcase_05 AC 132 ms
40,968 KB
testcase_06 AC 135 ms
41,420 KB
testcase_07 AC 134 ms
41,236 KB
testcase_08 AC 135 ms
41,188 KB
testcase_09 AC 139 ms
41,428 KB
testcase_10 AC 142 ms
41,352 KB
testcase_11 AC 140 ms
41,352 KB
testcase_12 AC 121 ms
39,956 KB
testcase_13 AC 138 ms
41,120 KB
testcase_14 AC 134 ms
41,088 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