結果

問題 No.46 はじめのn歩
ユーザー moriyukimoriyuki
提出日時 2023-04-26 11:10:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 321 bytes
コンパイル時間 6,271 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-11-15 19:24:04
合計ジャッジ時間 6,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,440 KB
testcase_01 AC 126 ms
41,544 KB
testcase_02 AC 129 ms
41,348 KB
testcase_03 AC 130 ms
41,016 KB
testcase_04 AC 126 ms
41,352 KB
testcase_05 AC 127 ms
41,352 KB
testcase_06 AC 129 ms
41,280 KB
testcase_07 AC 119 ms
40,744 KB
testcase_08 AC 127 ms
41,404 KB
testcase_09 AC 135 ms
41,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Firststep {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextInt();
		double b = sc.nextInt();
		
		if (b % a == 0) {
			System.out.println((int)(b/a));
		} else {
			System.out.println((int)(b/a) + 1);
		}
		
		sc.close();
	}
}
0