結果

問題 No.388 階段 (1)
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-10 12:19:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 3,660 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-11-07 12:34:34
合計ジャッジ時間 6,559 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,384 KB
testcase_01 AC 127 ms
41,488 KB
testcase_02 AC 125 ms
41,536 KB
testcase_03 AC 136 ms
41,400 KB
testcase_04 AC 113 ms
39,952 KB
testcase_05 AC 127 ms
41,164 KB
testcase_06 AC 127 ms
41,612 KB
testcase_07 AC 126 ms
41,380 KB
testcase_08 AC 126 ms
41,392 KB
testcase_09 AC 129 ms
41,428 KB
testcase_10 AC 133 ms
41,224 KB
testcase_11 AC 125 ms
41,360 KB
testcase_12 AC 112 ms
40,164 KB
testcase_13 AC 128 ms
41,172 KB
testcase_14 AC 127 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No_388 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int S = sc.nextInt();
		int F = sc.nextInt();
		if ( S%F==0 || S>F && S%F>0 ){ //SがFで割り切れる、もしくはS>Fで余りが1以上の時
			System.out.println((S/F)+1);
		}
		else if (F>S){
			System.out.println(1);
		}
	}
}
0