結果

問題 No.46 はじめのn歩
ユーザー nomhiro1204nomhiro1204
提出日時 2017-04-04 19:22:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 2,995 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-07-08 08:37:01
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,172 KB
testcase_01 AC 114 ms
41,532 KB
testcase_02 AC 109 ms
41,584 KB
testcase_03 AC 110 ms
41,512 KB
testcase_04 AC 114 ms
41,684 KB
testcase_05 AC 114 ms
41,280 KB
testcase_06 AC 118 ms
41,256 KB
testcase_07 AC 121 ms
40,384 KB
testcase_08 AC 119 ms
41,344 KB
testcase_09 AC 116 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
    public static void main(String args[] ) throws Exception {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
		int b = sc.nextInt();
		int output = b / a;
		if (b % a != 0) {
			output++;
		}
		System.out.println(output);
    }
}
0