結果

問題 No.46 はじめのn歩
ユーザー rodearodea
提出日時 2018-01-08 19:25:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-06-06 01:45:11
合計ジャッジ時間 3,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,604 KB
testcase_01 AC 131 ms
41,556 KB
testcase_02 AC 131 ms
41,432 KB
testcase_03 AC 130 ms
41,292 KB
testcase_04 AC 131 ms
41,448 KB
testcase_05 AC 131 ms
41,480 KB
testcase_06 AC 131 ms
41,028 KB
testcase_07 AC 130 ms
41,100 KB
testcase_08 AC 131 ms
41,380 KB
testcase_09 AC 131 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner br = new Scanner(System.in);
        int a = br.nextInt();
        int b = br.nextInt();
        
        if(b%a==0) System.out.print(b/a);
        else System.out.print((b/a)+1);
    }
}
0