結果

問題 No.46 はじめのn歩
ユーザー papipenpapipen
提出日時 2017-03-23 21:30:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 301 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,272 KB
最終ジャッジ日時 2024-07-05 18:54:11
合計ジャッジ時間 3,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,852 KB
testcase_01 AC 126 ms
41,080 KB
testcase_02 AC 113 ms
41,012 KB
testcase_03 AC 114 ms
40,020 KB
testcase_04 AC 127 ms
41,220 KB
testcase_05 AC 125 ms
41,272 KB
testcase_06 AC 125 ms
40,824 KB
testcase_07 AC 124 ms
40,892 KB
testcase_08 AC 117 ms
40,508 KB
testcase_09 AC 125 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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