結果

問題 No.46 はじめのn歩
ユーザー GBGB
提出日時 2018-04-08 14:46:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 884 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 2,532 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-06-26 20:21:10
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,516 KB
testcase_01 AC 121 ms
41,224 KB
testcase_02 AC 117 ms
41,524 KB
testcase_03 AC 122 ms
41,272 KB
testcase_04 AC 112 ms
40,576 KB
testcase_05 AC 122 ms
41,032 KB
testcase_06 AC 103 ms
39,724 KB
testcase_07 AC 128 ms
40,200 KB
testcase_08 AC 884 ms
41,260 KB
testcase_09 AC 124 ms
41,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args)throws IOException {

    Scanner scan=new Scanner(System.in);
    int a=Integer.parseInt(scan.next());
    int b=Integer.parseInt(scan.next());
    int count=0;

    while(b>0){
      b-=a;
      count++;
    }

    System.out.println(count);

  }
}
0