結果

問題 No.46 はじめのn歩
ユーザー yasu_yasu_
提出日時 2019-04-03 00:34:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 638 bytes
コンパイル時間 3,593 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 42,104 KB
最終ジャッジ日時 2024-05-08 12:25:03
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
42,104 KB
testcase_01 AC 153 ms
41,308 KB
testcase_02 AC 137 ms
41,852 KB
testcase_03 AC 137 ms
41,516 KB
testcase_04 AC 140 ms
41,788 KB
testcase_05 AC 142 ms
41,480 KB
testcase_06 AC 144 ms
41,412 KB
testcase_07 AC 141 ms
41,532 KB
testcase_08 AC 138 ms
41,664 KB
testcase_09 AC 139 ms
41,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package programingtest;

import java.util.Scanner;

/**
 *
 * @author yh_04
 */
public class Programingtest {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        int ret = (int)Math.ceil((double)b / (double)a);
        
        System.out.println(ret);
    }
    
}
0