結果

問題 No.46 はじめのn歩
ユーザー omuretsu2omuretsu2
提出日時 2016-05-10 01:24:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 410 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 52,036 KB
最終ジャッジ日時 2024-10-05 13:21:17
合計ジャッジ時間 3,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 49 ms
49,884 KB
testcase_02 WA -
testcase_03 AC 50 ms
49,532 KB
testcase_04 AC 49 ms
50,112 KB
testcase_05 AC 50 ms
50,020 KB
testcase_06 WA -
testcase_07 AC 48 ms
49,504 KB
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Nwark {
	static public void main(String args[]) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] ab = br.readLine().split(" ");

		int ans = 0;
		int aPlus = 0;

		int a = Integer.parseInt(ab[0]);
		int b = Integer.parseInt(ab[1]);

		for(; aPlus <= b;){
			aPlus = aPlus + a;
			ans++;
		}

		System.out.println(ans);

		}
	}
0