結果

問題 No.46 はじめのn歩
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 10:56:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 349 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 42,108 KB
最終ジャッジ日時 2024-05-07 14:47:07
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,768 KB
testcase_01 AC 129 ms
42,064 KB
testcase_02 AC 140 ms
41,748 KB
testcase_03 AC 126 ms
41,460 KB
testcase_04 AC 132 ms
41,464 KB
testcase_05 AC 129 ms
42,108 KB
testcase_06 AC 130 ms
41,588 KB
testcase_07 AC 131 ms
41,660 KB
testcase_08 AC 144 ms
41,520 KB
testcase_09 AC 139 ms
41,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        // a b ともに正の整数。(1≤a,b≤109)
        double a = sc.nextDouble();
        double b = sc.nextDouble();

        int ans = (int) Math.ceil(b / a);

        System.out.println(ans);
    }
}
0