結果

問題 No.46 はじめのn歩
ユーザー KalavinkaKalavinka
提出日時 2016-06-13 17:34:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 438 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-10-09 13:13:41
合計ジャッジ時間 4,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,048 KB
testcase_01 AC 125 ms
53,908 KB
testcase_02 AC 124 ms
54,260 KB
testcase_03 AC 124 ms
54,032 KB
testcase_04 AC 126 ms
54,148 KB
testcase_05 AC 131 ms
54,076 KB
testcase_06 AC 127 ms
53,948 KB
testcase_07 AC 127 ms
54,016 KB
testcase_08 AC 127 ms
53,876 KB
testcase_09 AC 124 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String tmp0 = sc.next();
        String tmp1 = sc.next();
        int a = Integer.parseInt(tmp0);
        int b = Integer.parseInt(tmp1);
        int ans = b / a;
        if(b % a > 0){
            System.out.println(ans+1);
        }else{
            System.out.println(ans);
        }
    }
}
0