結果

問題 No.46 はじめのn歩
ユーザー S1hoS1ho
提出日時 2017-02-19 10:54:45
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 3,833 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-12-30 04:25:35
合計ジャッジ時間 6,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,004 KB
testcase_01 AC 147 ms
40,908 KB
testcase_02 AC 148 ms
40,864 KB
testcase_03 AC 146 ms
40,688 KB
testcase_04 AC 142 ms
40,936 KB
testcase_05 AC 132 ms
40,048 KB
testcase_06 AC 144 ms
41,224 KB
testcase_07 AC 146 ms
41,076 KB
testcase_08 AC 142 ms
41,316 KB
testcase_09 AC 147 ms
40,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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