結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,152 KB
testcase_01 AC 132 ms
53,960 KB
testcase_02 AC 131 ms
53,988 KB
testcase_03 AC 129 ms
54,280 KB
testcase_04 AC 129 ms
54,240 KB
testcase_05 AC 116 ms
53,052 KB
testcase_06 AC 128 ms
54,224 KB
testcase_07 AC 128 ms
54,300 KB
testcase_08 AC 114 ms
52,820 KB
testcase_09 AC 125 ms
53,872 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