結果

問題 No.46 はじめのn歩
ユーザー こぱるこぱる
提出日時 2022-06-21 15:28:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 73,676 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-10-14 08:56:06
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,724 KB
testcase_01 AC 117 ms
41,112 KB
testcase_02 AC 119 ms
41,288 KB
testcase_03 AC 121 ms
41,216 KB
testcase_04 AC 116 ms
40,916 KB
testcase_05 AC 113 ms
41,016 KB
testcase_06 AC 104 ms
39,768 KB
testcase_07 AC 119 ms
40,900 KB
testcase_08 AC 113 ms
40,492 KB
testcase_09 AC 105 ms
39,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

0