結果

問題 No.46 はじめのn歩
ユーザー hidehide
提出日時 2017-06-05 18:06:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 590 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,572 KB
最終ジャッジ日時 2024-09-22 06:49:58
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,144 KB
testcase_01 AC 123 ms
53,964 KB
testcase_02 AC 127 ms
54,208 KB
testcase_03 AC 128 ms
54,088 KB
testcase_04 AC 126 ms
54,060 KB
testcase_05 AC 129 ms
54,160 KB
testcase_06 AC 129 ms
54,572 KB
testcase_07 AC 131 ms
53,912 KB
testcase_08 AC 130 ms
54,160 KB
testcase_09 AC 131 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner s = new Scanner(System.in);
        int a = s.nextInt();
        int b = s.nextInt();
        
        int ans_pre = b%a;
        if (ans_pre == 0){
            System.out.println(b/a);
        }else{
            System.out.println(b/a + 1);
        }
        

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
    }
}

0