結果

問題 No.46 はじめのn歩
ユーザー eagleeagle
提出日時 2022-05-26 14:16:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 1,720 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-09-20 14:59:14
合計ジャッジ時間 3,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,136 KB
testcase_01 AC 95 ms
39,992 KB
testcase_02 AC 108 ms
40,844 KB
testcase_03 AC 107 ms
41,048 KB
testcase_04 AC 108 ms
41,196 KB
testcase_05 AC 105 ms
40,880 KB
testcase_06 AC 100 ms
39,932 KB
testcase_07 AC 121 ms
41,176 KB
testcase_08 AC 108 ms
41,108 KB
testcase_09 AC 109 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//一歩の歩幅
		int a = sc.nextInt();
		//歩く距離
		int b = sc.nextInt();
		//歩数
		int step = b / a;
		if(b % a != 0) {
			step++;
		}
		System.out.println(step);
	}
}
0