結果

問題 No.46 はじめのn歩
ユーザー omuretsu2omuretsu2
提出日時 2016-05-10 01:37:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 50,172 KB
最終ジャッジ日時 2024-10-05 13:21:34
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
49,896 KB
testcase_01 AC 50 ms
49,872 KB
testcase_02 AC 48 ms
49,652 KB
testcase_03 AC 48 ms
50,016 KB
testcase_04 AC 49 ms
49,992 KB
testcase_05 AC 50 ms
49,628 KB
testcase_06 AC 51 ms
50,172 KB
testcase_07 AC 51 ms
49,920 KB
testcase_08 AC 52 ms
49,496 KB
testcase_09 AC 50 ms
49,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Nwark {
	static public void main(String args[]) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] ab = br.readLine().split(" ");

		int a = Integer.parseInt(ab[0]);
		int b = Integer.parseInt(ab[1]);

		if(b%a > 0){
			System.out.println((b/a)+1);
		} else {
			System.out.println(b/a);
		}
	}
}
0