結果

問題 No.388 階段 (1)
ユーザー nogisunnogisun
提出日時 2020-03-19 10:34:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 3,056 ms
コンパイル使用メモリ 71,112 KB
実行使用メモリ 56,212 KB
最終ジャッジ日時 2023-08-20 20:44:12
合計ジャッジ時間 5,802 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,432 KB
testcase_01 AC 125 ms
55,436 KB
testcase_02 AC 124 ms
55,520 KB
testcase_03 AC 125 ms
55,328 KB
testcase_04 AC 126 ms
55,472 KB
testcase_05 AC 123 ms
55,472 KB
testcase_06 AC 123 ms
56,064 KB
testcase_07 AC 123 ms
55,732 KB
testcase_08 AC 123 ms
53,556 KB
testcase_09 AC 124 ms
55,704 KB
testcase_10 AC 124 ms
55,444 KB
testcase_11 AC 125 ms
56,212 KB
testcase_12 AC 127 ms
55,720 KB
testcase_13 AC 124 ms
55,584 KB
testcase_14 AC 124 ms
55,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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