結果

問題 No.46 はじめのn歩
ユーザー キョウチクキョウチク
提出日時 2019-09-20 03:23:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 635 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 74,220 KB
実行使用メモリ 51,000 KB
最終ジャッジ日時 2024-09-13 09:19:42
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,064 KB
testcase_01 AC 54 ms
49,988 KB
testcase_02 AC 54 ms
50,196 KB
testcase_03 AC 55 ms
50,260 KB
testcase_04 AC 53 ms
50,300 KB
testcase_05 AC 53 ms
49,976 KB
testcase_06 AC 53 ms
49,980 KB
testcase_07 AC 54 ms
49,984 KB
testcase_08 AC 635 ms
51,000 KB
testcase_09 AC 52 ms
50,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Test{
    public static void main(String[] args) throws IOException{
        BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
        String[] s = buf.readLine().split(" ");
        int a = Integer.parseInt(s[0]);
        int b = Integer.parseInt(s[1]);
        int walk=0;
        while (a*walk<b) {
        	walk++;
        }
        System.out.println(walk);
    }
}
0