結果

問題 No.388 階段 (1)
ユーザー Maeda
提出日時 2025-08-25 11:17:41
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 3,162 ms
コンパイル使用メモリ 76,592 KB
実行使用メモリ 46,628 KB
最終ジャッジ日時 2025-08-25 11:17:48
合計ジャッジ時間 5,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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