結果

問題 No.46 はじめのn歩
ユーザー Koketti1Koketti1
提出日時 2017-02-04 11:02:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 74,016 KB
実行使用メモリ 41,224 KB
最終ジャッジ日時 2024-12-24 06:10:09
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,236 KB
testcase_01 AC 122 ms
40,852 KB
testcase_02 AC 125 ms
41,224 KB
testcase_03 AC 116 ms
41,064 KB
testcase_04 AC 113 ms
41,008 KB
testcase_05 AC 117 ms
40,924 KB
testcase_06 AC 120 ms
40,944 KB
testcase_07 AC 118 ms
41,136 KB
testcase_08 AC 104 ms
40,460 KB
testcase_09 AC 116 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		
		int a = scanner.nextInt();
		int b = scanner.nextInt();
		if(b % a == 0){
			System.out.println(b/a);
		}else{
			System.out.println(b / a + 1);
		}
		scanner.close();
	}
}
0