結果

問題 No.46 はじめのn歩
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 21:10:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-07-04 10:55:52
合計ジャッジ時間 3,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,260 KB
testcase_01 AC 130 ms
41,536 KB
testcase_02 AC 131 ms
41,140 KB
testcase_03 AC 128 ms
41,384 KB
testcase_04 AC 130 ms
41,432 KB
testcase_05 AC 130 ms
41,540 KB
testcase_06 AC 126 ms
41,220 KB
testcase_07 AC 131 ms
41,468 KB
testcase_08 AC 128 ms
41,336 KB
testcase_09 AC 126 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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