結果

問題 No.46 はじめのn歩
ユーザー mura40424mura40424
提出日時 2014-11-23 14:30:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 730 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 76,296 KB
実行使用メモリ 48,292 KB
最終ジャッジ日時 2025-01-02 20:12:54
合計ジャッジ時間 5,266 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
48,148 KB
testcase_01 AC 134 ms
48,164 KB
testcase_02 AC 130 ms
48,288 KB
testcase_03 AC 129 ms
48,268 KB
testcase_04 AC 130 ms
48,268 KB
testcase_05 AC 131 ms
48,164 KB
testcase_06 AC 130 ms
48,292 KB
testcase_07 AC 133 ms
48,264 KB
testcase_08 AC 730 ms
48,024 KB
testcase_09 AC 133 ms
48,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		int a = S.nextInt();
		int b = S.nextInt();
		int count=1;
		
		while(count*a < b)
			count++;
		System.out.println(count);
	}
}
0