結果

問題 No.388 階段 (1)
ユーザー 123poripori123poripori
提出日時 2021-05-26 17:48:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-10-15 13:51:53
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,100 KB
testcase_01 AC 102 ms
39,992 KB
testcase_02 AC 106 ms
40,168 KB
testcase_03 AC 105 ms
40,172 KB
testcase_04 AC 101 ms
40,156 KB
testcase_05 AC 118 ms
41,244 KB
testcase_06 AC 101 ms
39,784 KB
testcase_07 AC 109 ms
41,192 KB
testcase_08 AC 106 ms
40,140 KB
testcase_09 AC 105 ms
39,996 KB
testcase_10 AC 103 ms
39,908 KB
testcase_11 AC 118 ms
40,708 KB
testcase_12 AC 121 ms
41,156 KB
testcase_13 AC 117 ms
41,536 KB
testcase_14 AC 117 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        int a = sc.nextInt();

        // int 1つ分を読み込む
        int b = sc.nextInt();

        // 標準出力に書き出す。
        System.out.println((a / b) + 1);
    }
}
0