結果

問題 No.46 はじめのn歩
ユーザー 1kohei11kohei1
提出日時 2017-06-22 19:11:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 3,306 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-10-02 12:20:20
合計ジャッジ時間 3,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,712 KB
testcase_01 AC 120 ms
54,276 KB
testcase_02 AC 120 ms
53,844 KB
testcase_03 AC 118 ms
53,952 KB
testcase_04 AC 114 ms
53,896 KB
testcase_05 AC 116 ms
53,884 KB
testcase_06 AC 105 ms
52,972 KB
testcase_07 AC 113 ms
53,708 KB
testcase_08 AC 109 ms
54,072 KB
testcase_09 AC 103 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// package whatever; // don't place package name!

import java.io.*;
import java.util.Scanner;

class Main
{
    public static void main (String[] args) throws java.lang.Exception
    {
        Scanner in = new Scanner(System.in);
        int a = in.nextInt();
        int b = in.nextInt();
        
        if (b % a == 0) {
            System.out.println(b / a);
        } else {
            System.out.println(b / a + 1);
        }
    }
}
0