結果

問題 No.46 はじめのn歩
ユーザー kusa_no_nekusa_no_ne
提出日時 2017-11-16 00:30:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 261 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-11-25 04:10:43
合計ジャッジ時間 3,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,916 KB
testcase_01 AC 106 ms
52,548 KB
testcase_02 AC 131 ms
54,088 KB
testcase_03 AC 127 ms
54,144 KB
testcase_04 AC 126 ms
54,356 KB
testcase_05 AC 129 ms
54,404 KB
testcase_06 AC 119 ms
53,552 KB
testcase_07 AC 129 ms
54,204 KB
testcase_08 AC 108 ms
53,264 KB
testcase_09 AC 134 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class practice{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        double a = sc.nextDouble();
        double b = sc.nextDouble();
        System.out.println((long)Math.ceil(b/a));
    }
}
0