結果

問題 No.46 はじめのn歩
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 14:58:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-05-05 14:35:36
合計ジャッジ時間 3,426 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,112 KB
testcase_01 AC 114 ms
41,176 KB
testcase_02 AC 97 ms
40,012 KB
testcase_03 AC 100 ms
39,972 KB
testcase_04 AC 111 ms
41,264 KB
testcase_05 AC 113 ms
40,036 KB
testcase_06 AC 106 ms
40,616 KB
testcase_07 AC 108 ms
41,216 KB
testcase_08 AC 107 ms
41,396 KB
testcase_09 AC 104 ms
40,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
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