結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,068 KB
testcase_01 AC 105 ms
41,220 KB
testcase_02 AC 109 ms
41,356 KB
testcase_03 AC 112 ms
41,056 KB
testcase_04 AC 114 ms
41,448 KB
testcase_05 AC 119 ms
41,212 KB
testcase_06 AC 101 ms
41,288 KB
testcase_07 AC 111 ms
41,104 KB
testcase_08 AC 112 ms
41,240 KB
testcase_09 AC 103 ms
41,300 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