結果

問題 No.46 はじめのn歩
ユーザー KatoooooKatooooo
提出日時 2017-02-10 22:20:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 4,399 ms
コンパイル使用メモリ 74,748 KB
実行使用メモリ 41,168 KB
最終ジャッジ日時 2024-06-08 16:23:32
合計ジャッジ時間 5,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,168 KB
testcase_01 AC 122 ms
40,996 KB
testcase_02 AC 103 ms
39,948 KB
testcase_03 AC 106 ms
40,192 KB
testcase_04 AC 123 ms
41,108 KB
testcase_05 AC 111 ms
40,052 KB
testcase_06 AC 125 ms
41,068 KB
testcase_07 AC 109 ms
39,824 KB
testcase_08 AC 119 ms
41,120 KB
testcase_09 AC 122 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class FirstStep {

  public static void main(String[] args){

    Scanner input=new Scanner(System.in);
    int a = input.nextInt();
    int b = input.nextInt();

    int steps = b/a; //歩数

    if(b%a!=0){
      steps++;
    }

    System.out.println(steps);

  }
}
0