結果

問題 No.46 はじめのn歩
ユーザー k_kangbomk_kangbom
提出日時 2016-07-07 07:37:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 545 bytes
コンパイル時間 1,879 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 56,228 KB
最終ジャッジ日時 2024-10-12 22:59:49
合計ジャッジ時間 3,884 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,040 KB
testcase_01 AC 123 ms
54,016 KB
testcase_02 AC 123 ms
56,228 KB
testcase_03 AC 122 ms
54,004 KB
testcase_04 AC 121 ms
54,044 KB
testcase_05 AC 109 ms
53,056 KB
testcase_06 AC 120 ms
53,996 KB
testcase_07 AC 118 ms
53,988 KB
testcase_08 AC 123 ms
54,052 KB
testcase_09 AC 124 ms
54,204 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();

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

}
0