結果

問題 No.46 はじめのn歩
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-11-09 16:02:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 546 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 3,153 ms
コンパイル使用メモリ 73,612 KB
実行使用メモリ 54,000 KB
最終ジャッジ日時 2024-11-25 05:54:01
合計ジャッジ時間 5,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,952 KB
testcase_01 AC 119 ms
54,000 KB
testcase_02 AC 119 ms
53,660 KB
testcase_03 AC 113 ms
53,160 KB
testcase_04 AC 106 ms
52,700 KB
testcase_05 AC 104 ms
52,848 KB
testcase_06 AC 117 ms
53,912 KB
testcase_07 AC 106 ms
52,832 KB
testcase_08 AC 546 ms
53,908 KB
testcase_09 AC 107 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No_046 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int a = sc.nextInt();
	int b = sc.nextInt();
	int c = 0;
	int ans = 0;
	while(c < b){
		c += a;
		ans++;
	}
	System.out.println(ans);
}
}
0