結果

問題 No.46 はじめのn歩
ユーザー kick1128kick1128
提出日時 2021-12-04 16:10:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 553 ms / 5,000 ms
コード長 518 bytes
コンパイル時間 3,065 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-07-06 22:22:37
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,084 KB
testcase_01 AC 120 ms
54,220 KB
testcase_02 AC 122 ms
53,956 KB
testcase_03 AC 120 ms
53,964 KB
testcase_04 AC 108 ms
52,856 KB
testcase_05 AC 133 ms
53,976 KB
testcase_06 AC 125 ms
54,164 KB
testcase_07 AC 120 ms
54,176 KB
testcase_08 AC 553 ms
53,124 KB
testcase_09 AC 129 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Scanner;

public class Test {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		// 1歩数の距離
        int a = sc.nextInt();
        // 距離
        int b = sc.nextInt();
        sc.close();
        // 歩数
        int count = 0;
        // 歩行距離
        int run = 0;

        // 歩ききるまで何歩かかるか
        while(run < b) {
        	run = run + a;
        	count++;
        }
        System.out.println(count);
	}

}
0