結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,248 KB
testcase_01 AC 115 ms
41,388 KB
testcase_02 AC 119 ms
39,912 KB
testcase_03 AC 125 ms
41,616 KB
testcase_04 AC 126 ms
41,372 KB
testcase_05 AC 132 ms
41,656 KB
testcase_06 AC 126 ms
41,364 KB
testcase_07 AC 120 ms
41,636 KB
testcase_08 AC 98 ms
41,780 KB
testcase_09 AC 115 ms
41,196 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