結果

問題 No.388 階段 (1)
ユーザー star filed☆star filed☆
提出日時 2020-04-25 14:33:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-04-24 17:00:20
合計ジャッジ時間 4,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,924 KB
testcase_01 AC 117 ms
41,052 KB
testcase_02 AC 116 ms
41,004 KB
testcase_03 AC 112 ms
40,792 KB
testcase_04 AC 104 ms
40,144 KB
testcase_05 AC 106 ms
40,052 KB
testcase_06 AC 114 ms
41,048 KB
testcase_07 AC 117 ms
41,296 KB
testcase_08 AC 103 ms
40,364 KB
testcase_09 AC 110 ms
40,872 KB
testcase_10 AC 111 ms
40,836 KB
testcase_11 AC 102 ms
39,984 KB
testcase_12 AC 102 ms
39,880 KB
testcase_13 AC 110 ms
41,104 KB
testcase_14 AC 111 ms
40,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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(1 + S / F);
    }
}
0