結果

問題 No.46 はじめのn歩
ユーザー len_discoreglen_discoreg
提出日時 2016-06-02 17:14:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 538 ms / 5,000 ms
コード長 348 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 74,048 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-10-08 05:35:55
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,148 KB
testcase_01 AC 101 ms
40,168 KB
testcase_02 AC 111 ms
40,888 KB
testcase_03 AC 114 ms
41,544 KB
testcase_04 AC 111 ms
41,040 KB
testcase_05 AC 99 ms
39,996 KB
testcase_06 AC 108 ms
40,996 KB
testcase_07 AC 112 ms
41,380 KB
testcase_08 AC 538 ms
41,192 KB
testcase_09 AC 116 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
    public static void main(String[] args){
    	Scanner scan = new Scanner(System.in);
    	int a = scan.nextInt();
    	int b = scan.nextInt();

    	int pedometer = 0;

    	int total = 0;
    	while(total < b){
    		pedometer++;
    		total = total + a;
    	}
    	System.out.println(pedometer);
    }
}
0