結果

問題 No.46 はじめのn歩
ユーザー QED0302QED0302
提出日時 2018-05-10 16:01:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 878 ms / 5,000 ms
コード長 301 bytes
コンパイル時間 3,161 ms
コンパイル使用メモリ 73,932 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-06-28 02:59:40
合計ジャッジ時間 5,782 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,096 KB
testcase_01 AC 115 ms
39,984 KB
testcase_02 AC 116 ms
39,860 KB
testcase_03 AC 119 ms
39,716 KB
testcase_04 AC 128 ms
41,068 KB
testcase_05 AC 128 ms
41,144 KB
testcase_06 AC 114 ms
39,960 KB
testcase_07 AC 126 ms
41,304 KB
testcase_08 AC 878 ms
41,120 KB
testcase_09 AC 127 ms
40,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	public class num46{
		public static void main(String[] args){
			Scanner sc = new Scanner(System.in);
			int a = sc.nextInt();
			int b = sc.nextInt();

			int counter = 0;

			for(int i = b;i>0;i-=a){
				counter++;
			}
			System.out.println(counter);
		}
	}
0