結果

問題 No.46 はじめのn歩
ユーザー koso-yamakoso-yama
提出日時 2019-08-17 15:19:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-09-24 19:44:46
合計ジャッジ時間 3,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,120 KB
testcase_01 AC 115 ms
53,024 KB
testcase_02 AC 127 ms
53,764 KB
testcase_03 AC 127 ms
53,908 KB
testcase_04 AC 126 ms
53,960 KB
testcase_05 AC 128 ms
53,840 KB
testcase_06 AC 115 ms
53,160 KB
testcase_07 AC 130 ms
54,016 KB
testcase_08 AC 114 ms
52,984 KB
testcase_09 AC 127 ms
54,136 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 + ( b % a > 0 ? 1 : 0) );
    }
}
0