結果

問題 No.46 はじめのn歩
ユーザー S1hoS1ho
提出日時 2017-02-19 10:54:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 2,861 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-06-09 14:09:01
合計ジャッジ時間 4,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,080 KB
testcase_01 AC 114 ms
53,868 KB
testcase_02 AC 116 ms
54,072 KB
testcase_03 AC 113 ms
53,852 KB
testcase_04 AC 104 ms
52,892 KB
testcase_05 AC 113 ms
54,068 KB
testcase_06 AC 113 ms
53,812 KB
testcase_07 AC 114 ms
54,176 KB
testcase_08 AC 101 ms
52,900 KB
testcase_09 AC 102 ms
52,908 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