結果

問題 No.46 はじめのn歩
ユーザー ya-hurusanya-hurusan
提出日時 2020-01-25 23:58:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 3,438 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-09-14 04:18:23
合計ジャッジ時間 5,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,728 KB
testcase_01 AC 134 ms
53,840 KB
testcase_02 AC 136 ms
53,688 KB
testcase_03 AC 134 ms
54,008 KB
testcase_04 AC 135 ms
53,792 KB
testcase_05 AC 137 ms
54,088 KB
testcase_06 AC 135 ms
53,852 KB
testcase_07 AC 136 ms
54,012 KB
testcase_08 AC 136 ms
53,812 KB
testcase_09 AC 135 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package answer;

import java.util.Scanner;

public class No_46 {

	public static void main(String[] args) {

		// 入力値定義
		Scanner input = new Scanner(System.in);
		int step = input.nextInt();
		int distance = input.nextInt();

		// 処理部
		int cal = (distance / step );

		if((cal * step) < distance){
			cal = (cal + 1);
		}

		System.out.println(cal);

	}

}
0