結果

問題 No.46 はじめのn歩
ユーザー greentealovergreentealover
提出日時 2020-12-16 10:55:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 3,041 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 53,980 KB
最終ジャッジ日時 2024-09-20 04:41:50
合計ジャッジ時間 5,052 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,952 KB
testcase_01 AC 124 ms
53,812 KB
testcase_02 AC 129 ms
53,668 KB
testcase_03 AC 123 ms
53,980 KB
testcase_04 AC 124 ms
53,872 KB
testcase_05 AC 121 ms
53,520 KB
testcase_06 AC 120 ms
53,880 KB
testcase_07 AC 110 ms
52,812 KB
testcase_08 AC 125 ms
53,932 KB
testcase_09 AC 115 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Problem43 {

	public static void main(String[] args) {
		// 標準入力から読み込む際に、Scannerオブジェクトを使う。
		try (Scanner sc = new Scanner(System.in)) {
			// int 1つ分を読み込む
			int a = sc.nextInt();
			int b = sc.nextInt();
			int result = b / a;
			if (b % a != 0) {
				result++;
			}
			System.out.println(result);
		}
	}

}
0