結果

問題 No.46 はじめのn歩
ユーザー YatsukuYatsuku
提出日時 2015-12-09 17:26:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 695 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 73,788 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-09-15 05:52:17
合計ジャッジ時間 4,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,908 KB
testcase_01 AC 131 ms
53,744 KB
testcase_02 AC 131 ms
53,628 KB
testcase_03 AC 130 ms
54,012 KB
testcase_04 AC 118 ms
52,716 KB
testcase_05 AC 131 ms
53,940 KB
testcase_06 AC 118 ms
52,652 KB
testcase_07 AC 129 ms
53,752 KB
testcase_08 AC 695 ms
54,020 KB
testcase_09 AC 131 ms
53,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_46 {
	public static void main(String args[]) {
		int step = 0;

		Scanner stdIn = new Scanner(System.in);

		int feet = stdIn.nextInt();
		int length = stdIn.nextInt();

		while( feet * step < length ) {
			step++;	
		}
		System.out.println(step);
	}
}
0