結果

問題 No.388 階段 (1)
ユーザー CecilCecil
提出日時 2022-12-19 10:37:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 4,302 ms
コンパイル使用メモリ 73,484 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-11-18 00:23:52
合計ジャッジ時間 6,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,088 KB
testcase_01 AC 103 ms
53,992 KB
testcase_02 AC 104 ms
53,660 KB
testcase_03 AC 94 ms
53,056 KB
testcase_04 AC 96 ms
52,928 KB
testcase_05 AC 104 ms
53,660 KB
testcase_06 AC 105 ms
54,060 KB
testcase_07 AC 106 ms
53,772 KB
testcase_08 AC 105 ms
53,656 KB
testcase_09 AC 95 ms
52,868 KB
testcase_10 AC 107 ms
53,912 KB
testcase_11 AC 95 ms
52,952 KB
testcase_12 AC 106 ms
54,260 KB
testcase_13 AC 105 ms
53,668 KB
testcase_14 AC 103 ms
54,128 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