結果

問題 No.388 階段 (1)
ユーザー 37zigen37zigen
提出日時 2016-07-07 19:00:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-10-12 23:17:55
合計ジャッジ時間 4,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,088 KB
testcase_01 AC 132 ms
41,572 KB
testcase_02 AC 132 ms
41,244 KB
testcase_03 AC 115 ms
40,204 KB
testcase_04 AC 131 ms
41,112 KB
testcase_05 AC 130 ms
41,096 KB
testcase_06 AC 130 ms
41,176 KB
testcase_07 AC 116 ms
40,228 KB
testcase_08 AC 131 ms
41,148 KB
testcase_09 AC 133 ms
41,388 KB
testcase_10 AC 131 ms
41,312 KB
testcase_11 AC 133 ms
41,572 KB
testcase_12 AC 126 ms
41,116 KB
testcase_13 AC 132 ms
41,392 KB
testcase_14 AC 131 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int s = sc.nextInt();
		if (s < 0 || s > 456)
			throw new AssertionError();
		int f = sc.nextInt();
		if (f <= 0 || f > 124)
			throw new AssertionError();
		System.out.println((s / f + 1));
	}
}
0