結果

問題 No.46 はじめのn歩
ユーザー clamdclamd
提出日時 2016-12-06 00:33:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 3,911 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-05-05 21:09:24
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,308 KB
testcase_01 AC 121 ms
41,000 KB
testcase_02 AC 107 ms
39,944 KB
testcase_03 AC 104 ms
40,332 KB
testcase_04 AC 113 ms
41,032 KB
testcase_05 AC 123 ms
41,136 KB
testcase_06 AC 103 ms
39,832 KB
testcase_07 AC 113 ms
41,032 KB
testcase_08 AC 102 ms
39,608 KB
testcase_09 AC 121 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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