結果

問題 No.477 MVP
ユーザー yuiyui
提出日時 2017-02-20 10:49:20
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 275 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-06-09 14:46:08
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,944 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 115 ms
53,968 KB
testcase_07 AC 122 ms
54,136 KB
testcase_08 AC 113 ms
53,984 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

    	Scanner sc = new Scanner(System.in);
    	int hit = sc.nextInt();
    	int mem = sc.nextInt();
    	int ans = 0;

    	ans=hit/(mem+1);
    	System.out.println(ans+1);
    }

}
0