結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,128 KB
testcase_01 AC 108 ms
40,032 KB
testcase_02 AC 123 ms
41,224 KB
testcase_03 AC 119 ms
40,912 KB
testcase_04 AC 119 ms
40,956 KB
testcase_05 AC 115 ms
41,076 KB
testcase_06 AC 117 ms
41,000 KB
testcase_07 AC 121 ms
41,260 KB
testcase_08 AC 119 ms
41,072 KB
testcase_09 AC 120 ms
41,224 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