結果

問題 No.46 はじめのn歩
ユーザー hideohideo
提出日時 2017-06-07 17:08:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-09-22 12:44:28
合計ジャッジ時間 4,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,164 KB
testcase_01 AC 127 ms
53,936 KB
testcase_02 AC 127 ms
54,188 KB
testcase_03 AC 117 ms
53,108 KB
testcase_04 AC 126 ms
54,044 KB
testcase_05 AC 116 ms
53,100 KB
testcase_06 AC 128 ms
54,364 KB
testcase_07 AC 127 ms
54,356 KB
testcase_08 AC 129 ms
54,412 KB
testcase_09 AC 128 ms
54,036 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;
        }else{
            res = Y/X;
        }
        System.out.println(res);
        
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
    }
}

0