結果

問題 No.46 はじめのn歩
ユーザー n_gojon_gojo
提出日時 2020-04-09 10:27:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 4,013 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-07-21 19:50:23
合計ジャッジ時間 6,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,744 KB
testcase_01 AC 107 ms
52,708 KB
testcase_02 AC 109 ms
53,220 KB
testcase_03 AC 122 ms
53,788 KB
testcase_04 AC 115 ms
53,536 KB
testcase_05 AC 106 ms
52,832 KB
testcase_06 AC 121 ms
53,760 KB
testcase_07 AC 106 ms
52,992 KB
testcase_08 AC 108 ms
54,044 KB
testcase_09 AC 120 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        // int 1つ分を読み込む
        int a = sc.nextInt();
        int b = sc.nextInt();
        int ans = b/a;
        if (b%a>0) {
            ans++;
        }
        System.out.println(ans);
    }
}
0