結果

問題 No.388 階段 (1)
ユーザー k__umek__ume
提出日時 2019-04-28 18:36:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 38,132 KB
最終ジャッジ日時 2024-05-09 23:07:21
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
38,132 KB
testcase_01 AC 65 ms
37,692 KB
testcase_02 AC 77 ms
37,512 KB
testcase_03 AC 72 ms
37,772 KB
testcase_04 AC 67 ms
37,640 KB
testcase_05 AC 69 ms
37,780 KB
testcase_06 AC 66 ms
37,772 KB
testcase_07 AC 68 ms
37,756 KB
testcase_08 AC 65 ms
37,828 KB
testcase_09 AC 67 ms
38,092 KB
testcase_10 AC 65 ms
37,672 KB
testcase_11 AC 65 ms
37,644 KB
testcase_12 AC 66 ms
37,824 KB
testcase_13 AC 65 ms
37,528 KB
testcase_14 AC 66 ms
37,828 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