結果

問題 No.46 はじめのn歩
ユーザー hidetohideto
提出日時 2017-06-05 18:07:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-09-22 06:50:02
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,120 KB
testcase_01 AC 130 ms
54,140 KB
testcase_02 AC 114 ms
52,888 KB
testcase_03 AC 128 ms
54,252 KB
testcase_04 AC 128 ms
54,224 KB
testcase_05 AC 115 ms
52,824 KB
testcase_06 AC 128 ms
54,368 KB
testcase_07 AC 128 ms
54,124 KB
testcase_08 AC 128 ms
54,264 KB
testcase_09 AC 128 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner s = new Scanner (System.in);
        int X = s.nextInt();
        int Y = s.nextInt();
        int res = Y/X;
        int tt = Y%X;
        if (tt>0){
            res = Y/X+1;
        }
        System.out.println(res);
        
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
    }
}
0