結果

問題 No.46 はじめのn歩
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 17:50:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 271 bytes
コンパイル時間 3,637 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 41,124 KB
最終ジャッジ日時 2024-07-04 19:16:09
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,092 KB
testcase_01 AC 108 ms
41,004 KB
testcase_02 AC 112 ms
41,088 KB
testcase_03 AC 102 ms
40,156 KB
testcase_04 AC 100 ms
39,984 KB
testcase_05 AC 108 ms
40,912 KB
testcase_06 AC 108 ms
40,184 KB
testcase_07 AC 109 ms
40,936 KB
testcase_08 AC 114 ms
41,124 KB
testcase_09 AC 115 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Nho {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt() , b = s.nextInt();
		s.close();
		if(b % a == 0)
			System.out.println(b/a);
		else
			System.out.println(b/a + 1);

	}

}
0