結果

問題 No.46 はじめのn歩
ユーザー dogwood0424dogwood0424
提出日時 2017-11-27 20:56:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 325 bytes
コンパイル時間 3,633 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-11-27 11:24:37
合計ジャッジ時間 5,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,292 KB
testcase_01 AC 130 ms
41,176 KB
testcase_02 AC 129 ms
41,508 KB
testcase_03 AC 132 ms
41,292 KB
testcase_04 AC 131 ms
41,044 KB
testcase_05 AC 130 ms
41,320 KB
testcase_06 AC 128 ms
41,180 KB
testcase_07 AC 117 ms
40,152 KB
testcase_08 AC 131 ms
41,028 KB
testcase_09 AC 115 ms
39,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

		int a = s.nextInt();
		int b = s.nextInt();
		int c = 0;
		int d = 0;

		c = b/a;
		d = b%a;
		if(d != 0) {
			System.out.println(c+1);
		}
		else if (d == 0) {
			System.out.println(c);
		}
	}

}
0