結果

問題 No.388 階段 (1)
ユーザー Maeda
提出日時 2025-08-25 13:48:13
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 350 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 76,528 KB
実行使用メモリ 46,696 KB
最終ジャッジ日時 2025-08-25 13:48:18
合計ジャッジ時間 4,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 10 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        Scanner scan = new Scanner(System.in);
        int s = scan.nextInt();
        int f = scan.nextInt();
		int ans = f/s;
		
        ans ++;
        System.out.println(ans);
    }
}
0