結果

問題 No.46 はじめのn歩
ユーザー mura40424mura40424
提出日時 2014-11-23 14:30:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 609 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 77,596 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-06-10 21:36:16
合計ジャッジ時間 4,083 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,180 KB
testcase_01 AC 110 ms
41,112 KB
testcase_02 AC 113 ms
41,312 KB
testcase_03 AC 113 ms
41,324 KB
testcase_04 AC 108 ms
41,052 KB
testcase_05 AC 115 ms
41,196 KB
testcase_06 AC 116 ms
41,084 KB
testcase_07 AC 103 ms
41,176 KB
testcase_08 AC 609 ms
41,452 KB
testcase_09 AC 117 ms
41,336 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