結果

問題 No.388 階段 (1)
ユーザー S1hoS1ho
提出日時 2017-02-19 11:04:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 3,655 ms
コンパイル使用メモリ 73,776 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-06-09 14:09:58
合計ジャッジ時間 6,184 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
52,948 KB
testcase_01 AC 131 ms
53,992 KB
testcase_02 AC 118 ms
52,948 KB
testcase_03 AC 124 ms
54,072 KB
testcase_04 AC 123 ms
54,292 KB
testcase_05 AC 123 ms
53,900 KB
testcase_06 AC 120 ms
53,888 KB
testcase_07 AC 122 ms
53,744 KB
testcase_08 AC 125 ms
53,812 KB
testcase_09 AC 126 ms
54,108 KB
testcase_10 AC 127 ms
54,016 KB
testcase_11 AC 125 ms
54,024 KB
testcase_12 AC 125 ms
53,800 KB
testcase_13 AC 123 ms
53,984 KB
testcase_14 AC 127 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Steps1 {

    public static void main(String[] args) {
      
        int s;
        int f;
        
        Scanner scanner = new Scanner(System.in);
        
        s = scanner.nextInt();
        f = scanner.nextInt();
        
        System.out.println(s/f+1);
    }
    
}
0