結果

問題 No.46 はじめのn歩
ユーザー ryunocchiryunocchi
提出日時 2019-04-06 23:28:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 324 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-06-25 03:22:41
合計ジャッジ時間 3,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,436 KB
testcase_01 AC 119 ms
40,324 KB
testcase_02 AC 130 ms
41,284 KB
testcase_03 AC 131 ms
41,268 KB
testcase_04 AC 128 ms
41,192 KB
testcase_05 AC 127 ms
41,348 KB
testcase_06 AC 126 ms
41,484 KB
testcase_07 AC 127 ms
41,456 KB
testcase_08 AC 126 ms
41,436 KB
testcase_09 AC 129 ms
41,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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