結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,412 KB
testcase_01 AC 127 ms
41,240 KB
testcase_02 AC 137 ms
41,424 KB
testcase_03 AC 116 ms
39,996 KB
testcase_04 AC 128 ms
40,972 KB
testcase_05 AC 129 ms
41,372 KB
testcase_06 AC 126 ms
41,372 KB
testcase_07 AC 128 ms
41,548 KB
testcase_08 AC 128 ms
41,328 KB
testcase_09 AC 128 ms
41,324 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