結果

問題 No.388 階段 (1)
ユーザー S1hoS1ho
提出日時 2017-02-19 11:04:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 3,844 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-12-30 04:27:23
合計ジャッジ時間 6,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,300 KB
testcase_01 AC 144 ms
41,408 KB
testcase_02 AC 147 ms
41,168 KB
testcase_03 AC 143 ms
41,620 KB
testcase_04 AC 147 ms
41,432 KB
testcase_05 AC 144 ms
41,224 KB
testcase_06 AC 146 ms
41,184 KB
testcase_07 AC 143 ms
41,184 KB
testcase_08 AC 148 ms
41,144 KB
testcase_09 AC 147 ms
41,220 KB
testcase_10 AC 148 ms
41,456 KB
testcase_11 AC 146 ms
41,316 KB
testcase_12 AC 146 ms
41,136 KB
testcase_13 AC 146 ms
41,320 KB
testcase_14 AC 146 ms
41,072 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