結果

問題 No.46 はじめのn歩
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 15:03:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-11-27 12:39:18
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,428 KB
testcase_01 AC 108 ms
40,176 KB
testcase_02 AC 107 ms
39,848 KB
testcase_03 AC 105 ms
41,052 KB
testcase_04 AC 120 ms
41,408 KB
testcase_05 AC 113 ms
40,428 KB
testcase_06 AC 107 ms
40,096 KB
testcase_07 AC 109 ms
39,904 KB
testcase_08 AC 117 ms
41,248 KB
testcase_09 AC 120 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y46 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double a = sc.nextInt(), b = sc.nextInt();
        System.out.println((int)Math.ceil(b/a));
    }
}
0