結果

問題 No.388 階段 (1)
ユーザー CecilCecil
提出日時 2022-12-19 10:37:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-04-29 02:05:45
合計ジャッジ時間 4,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,620 KB
testcase_01 AC 111 ms
53,836 KB
testcase_02 AC 93 ms
52,496 KB
testcase_03 AC 106 ms
54,060 KB
testcase_04 AC 102 ms
52,912 KB
testcase_05 AC 109 ms
54,048 KB
testcase_06 AC 104 ms
53,984 KB
testcase_07 AC 105 ms
53,904 KB
testcase_08 AC 98 ms
52,620 KB
testcase_09 AC 105 ms
53,760 KB
testcase_10 AC 108 ms
54,076 KB
testcase_11 AC 99 ms
52,828 KB
testcase_12 AC 107 ms
53,824 KB
testcase_13 AC 109 ms
53,844 KB
testcase_14 AC 95 ms
52,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

		int a = scan.hasNextInt() ? scan.nextInt() : -1;
		int b = scan.hasNextInt() ? scan.nextInt() : -1;
		if (a > 456 || a < 0 || b > 123 || b < 1) {
			System.out.println("入力エラー");
			return;
		}
		
		int step = 0;
		boolean flag = false;
		
	    if(a >= b){
	        step = (a / b) + 1;
	    }else{
	        flag = true;
	    }
		
		step = !flag? step:1;

		// 結果出力
		System.out.println(step);

	}
}
0