結果

問題 No.46 はじめのn歩
ユーザー HTmojiHTmoji
提出日時 2018-06-19 09:49:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-06-30 17:11:25
合計ジャッジ時間 5,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,076 KB
testcase_01 AC 131 ms
54,288 KB
testcase_02 AC 130 ms
54,228 KB
testcase_03 AC 131 ms
54,072 KB
testcase_04 AC 130 ms
53,944 KB
testcase_05 AC 128 ms
54,080 KB
testcase_06 AC 136 ms
54,164 KB
testcase_07 AC 132 ms
53,996 KB
testcase_08 AC 132 ms
53,872 KB
testcase_09 AC 131 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Sample {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int i1 = sc.nextInt();
		int i2 = sc.nextInt();

		if(i2%i1 == 0) {
			System.out.println((i2/i1));
		} else {
			System.out.print((i2/i1 + 1));
		}
	}
}
0