結果

問題 No.388 階段 (1)
ユーザー k__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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

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