結果

問題 No.388 階段 (1)
ユーザー kurobei72kurobei72
提出日時 2018-01-18 20:16:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 73,364 KB
実行使用メモリ 41,192 KB
最終ジャッジ日時 2024-06-06 18:21:47
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,724 KB
testcase_01 AC 123 ms
40,724 KB
testcase_02 AC 120 ms
41,004 KB
testcase_03 AC 121 ms
40,824 KB
testcase_04 AC 120 ms
40,940 KB
testcase_05 AC 122 ms
40,996 KB
testcase_06 AC 122 ms
40,548 KB
testcase_07 AC 124 ms
41,100 KB
testcase_08 AC 128 ms
41,192 KB
testcase_09 AC 125 ms
40,900 KB
testcase_10 AC 119 ms
40,464 KB
testcase_11 AC 123 ms
40,540 KB
testcase_12 AC 124 ms
40,936 KB
testcase_13 AC 110 ms
39,700 KB
testcase_14 AC 129 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println(a/b+1);
    }
}
0