結果

問題 No.46 はじめのn歩
ユーザー mattyan0502mattyan0502
提出日時 2020-01-05 00:19:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 567 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-05-02 09:02:25
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,196 KB
testcase_01 AC 133 ms
41,320 KB
testcase_02 AC 132 ms
41,208 KB
testcase_03 AC 133 ms
41,468 KB
testcase_04 AC 131 ms
41,116 KB
testcase_05 AC 134 ms
41,484 KB
testcase_06 AC 129 ms
41,144 KB
testcase_07 AC 118 ms
40,200 KB
testcase_08 AC 140 ms
41,188 KB
testcase_09 AC 130 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        long a = sc.nextLong();
        long b = sc.nextLong();
        long ans = 0;
        if(a>=b)
        {
            ans = 1;
        }
        else if(a<b)
        {
            if(b%a!=0)
            {
                ans = b / a + 1;
            }
            else
            {
                ans = b / a;
            }
        }
        System.out.println(ans);
        
    }
}
0