結果

問題 No.46 はじめのn歩
ユーザー nishimitnishimit
提出日時 2018-06-30 16:41:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 699 ms / 5,000 ms
コード長 340 bytes
コンパイル時間 6,958 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-07-01 00:58:18
合計ジャッジ時間 6,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,904 KB
testcase_01 AC 117 ms
53,856 KB
testcase_02 AC 132 ms
53,856 KB
testcase_03 AC 132 ms
53,968 KB
testcase_04 AC 131 ms
53,928 KB
testcase_05 AC 129 ms
53,824 KB
testcase_06 AC 132 ms
54,012 KB
testcase_07 AC 132 ms
53,872 KB
testcase_08 AC 699 ms
53,972 KB
testcase_09 AC 132 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Nwalk{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        for(int i=1;;i++){
            if(i*a>=b){
                System.out.println(i);
                break;
            }
        }
    }
}
0