結果

問題 No.388 階段 (1)
ユーザー Ryugo Abe
提出日時 2016-12-15 12:00:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 2,724 ms
コンパイル使用メモリ 73,692 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-11-30 08:20:54
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    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