結果

問題 No.46 はじめのn歩
ユーザー metasequometasequo
提出日時 2015-05-10 23:27:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 222 bytes
コンパイル時間 3,496 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-07-05 22:08:31
合計ジャッジ時間 5,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,140 KB
testcase_01 AC 125 ms
41,272 KB
testcase_02 AC 127 ms
41,212 KB
testcase_03 AC 126 ms
41,288 KB
testcase_04 AC 118 ms
40,364 KB
testcase_05 AC 116 ms
40,172 KB
testcase_06 AC 128 ms
41,036 KB
testcase_07 AC 131 ms
41,264 KB
testcase_08 AC 126 ms
41,100 KB
testcase_09 AC 113 ms
40,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main46{
	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt(), b = s.nextInt();
		System.out.println(((b%a==0) ? b/a : (b/a)+1));
	}
}
0