結果

問題 No.388 階段 (1)
ユーザー ko kiko ki
提出日時 2020-12-29 22:28:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 3,359 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-10-06 05:20:24
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,964 KB
testcase_01 AC 129 ms
53,960 KB
testcase_02 AC 127 ms
54,092 KB
testcase_03 AC 126 ms
54,160 KB
testcase_04 AC 128 ms
53,976 KB
testcase_05 AC 130 ms
54,084 KB
testcase_06 AC 128 ms
53,964 KB
testcase_07 AC 129 ms
53,868 KB
testcase_08 AC 127 ms
53,996 KB
testcase_09 AC 115 ms
52,896 KB
testcase_10 AC 115 ms
53,152 KB
testcase_11 AC 129 ms
54,104 KB
testcase_12 AC 128 ms
53,828 KB
testcase_13 AC 130 ms
54,232 KB
testcase_14 AC 128 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder_1 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
    	
    	
        // int 1つ分を読み込む
        int s   = sc.nextInt();
    	int f   = sc.nextInt();
    	int ans = 0;
    	
    	ans = s / f + 1;
    	System.out.println(ans);
    }
}
0