結果

問題 No.46 はじめのn歩
ユーザー トミートミー
提出日時 2024-03-31 17:53:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-09-30 21:12:24
合計ジャッジ時間 3,508 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,048 KB
testcase_01 AC 111 ms
40,872 KB
testcase_02 AC 98 ms
39,892 KB
testcase_03 AC 99 ms
40,048 KB
testcase_04 AC 110 ms
41,032 KB
testcase_05 AC 94 ms
39,624 KB
testcase_06 AC 108 ms
41,244 KB
testcase_07 AC 101 ms
39,824 KB
testcase_08 AC 110 ms
41,424 KB
testcase_09 AC 107 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println(b % a == 0 ? b / a : b / a + 1);

        sc.close();

    }
}
0