結果

問題 No.46 はじめのn歩
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 15:41:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 2,688 ms
コンパイル使用メモリ 70,660 KB
実行使用メモリ 56,132 KB
最終ジャッジ日時 2023-09-09 11:41:38
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
56,028 KB
testcase_01 AC 122 ms
55,956 KB
testcase_02 AC 120 ms
55,420 KB
testcase_03 AC 122 ms
55,484 KB
testcase_04 AC 121 ms
56,132 KB
testcase_05 AC 120 ms
55,552 KB
testcase_06 AC 124 ms
55,784 KB
testcase_07 AC 122 ms
53,908 KB
testcase_08 AC 121 ms
55,940 KB
testcase_09 AC 121 ms
55,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		//System.out.println("歩幅");
		Scanner scanner = new Scanner(System.in);
		int a = scanner.nextInt();
		//System.out.println("区間");
		int b = scanner.nextInt();
		scanner.close();
		int n = 0;	//歩数
		if(b%a == 0) {
			 n = b/a;
		}else{
			n = b/a+1;
		}
		System.out.println(n);
	}
}
0