結果

問題 No.46 はじめのn歩
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 19:12:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 257 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 71,884 KB
実行使用メモリ 56,040 KB
最終ジャッジ日時 2023-09-13 08:04:28
合計ジャッジ時間 4,038 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
55,924 KB
testcase_01 AC 118 ms
55,448 KB
testcase_02 AC 118 ms
55,872 KB
testcase_03 AC 119 ms
55,680 KB
testcase_04 AC 119 ms
55,952 KB
testcase_05 AC 118 ms
55,484 KB
testcase_06 AC 119 ms
56,040 KB
testcase_07 AC 117 ms
55,484 KB
testcase_08 AC 118 ms
55,780 KB
testcase_09 AC 118 ms
55,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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