結果

問題 No.46 はじめのn歩
ユーザー mits58mits58
提出日時 2016-05-05 13:39:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 73,940 KB
実行使用メモリ 53,920 KB
最終ジャッジ日時 2024-10-05 09:31:39
合計ジャッジ時間 3,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,912 KB
testcase_01 AC 107 ms
52,836 KB
testcase_02 AC 103 ms
52,476 KB
testcase_03 AC 113 ms
53,884 KB
testcase_04 AC 114 ms
53,832 KB
testcase_05 AC 101 ms
52,828 KB
testcase_06 AC 103 ms
52,840 KB
testcase_07 AC 113 ms
53,680 KB
testcase_08 AC 115 ms
53,920 KB
testcase_09 AC 114 ms
52,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int a=sc.nextInt();
        	int b=sc.nextInt();
        	System.out.println((b+a-1)/a);
        }
    }
}
0