結果

問題 No.46 はじめのn歩
ユーザー KahoMatsumotoKahoMatsumoto
提出日時 2017-05-26 22:30:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 3,108 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-09-19 20:12:37
合計ジャッジ時間 4,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,940 KB
testcase_01 AC 126 ms
54,084 KB
testcase_02 AC 125 ms
54,084 KB
testcase_03 AC 128 ms
53,880 KB
testcase_04 AC 115 ms
52,916 KB
testcase_05 AC 115 ms
52,916 KB
testcase_06 AC 128 ms
54,108 KB
testcase_07 AC 126 ms
54,096 KB
testcase_08 AC 127 ms
53,996 KB
testcase_09 AC 113 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No46 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a, b, ans;
    a = sc.nextLong();
    b = sc.nextLong();
    ans = b / a;
    if (b % a != 0) {
      ans ++;
    }
    System.out.println(ans);
  }
}
0