結果

問題 No.388 階段 (1)
ユーザー k__umek__ume
提出日時 2019-04-28 18:36:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 78,092 KB
実行使用メモリ 52,896 KB
最終ジャッジ日時 2024-12-17 17:43:32
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
51,160 KB
testcase_01 AC 68 ms
51,016 KB
testcase_02 AC 68 ms
51,180 KB
testcase_03 AC 69 ms
51,036 KB
testcase_04 AC 67 ms
51,144 KB
testcase_05 AC 68 ms
50,928 KB
testcase_06 AC 68 ms
50,756 KB
testcase_07 AC 68 ms
51,252 KB
testcase_08 AC 69 ms
50,916 KB
testcase_09 AC 69 ms
51,112 KB
testcase_10 AC 67 ms
51,208 KB
testcase_11 AC 67 ms
52,896 KB
testcase_12 AC 67 ms
50,996 KB
testcase_13 AC 68 ms
51,156 KB
testcase_14 AC 69 ms
51,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String... args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int[] a = Arrays.stream(reader.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
        System.out.println(a[0] / a[1] + 1);
    }
}
0