結果

問題 No.598 オーバーフローファンタジー
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-24 22:28:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 1,751 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-06-07 17:46:22
合計ジャッジ時間 6,175 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,056 KB
testcase_01 AC 114 ms
54,152 KB
testcase_02 AC 108 ms
53,408 KB
testcase_03 AC 116 ms
54,148 KB
testcase_04 AC 100 ms
52,964 KB
testcase_05 AC 104 ms
52,960 KB
testcase_06 AC 117 ms
53,856 KB
testcase_07 AC 106 ms
53,200 KB
testcase_08 AC 102 ms
52,948 KB
testcase_09 AC 113 ms
54,156 KB
testcase_10 AC 114 ms
53,988 KB
testcase_11 AC 116 ms
53,936 KB
testcase_12 AC 119 ms
54,160 KB
testcase_13 AC 118 ms
53,852 KB
testcase_14 AC 104 ms
52,968 KB
testcase_15 AC 115 ms
53,884 KB
testcase_16 AC 106 ms
52,776 KB
testcase_17 AC 114 ms
53,920 KB
testcase_18 AC 116 ms
54,144 KB
testcase_19 AC 107 ms
52,904 KB
testcase_20 AC 117 ms
53,940 KB
testcase_21 AC 108 ms
54,316 KB
testcase_22 AC 118 ms
54,348 KB
testcase_23 AC 118 ms
54,132 KB
testcase_24 AC 119 ms
54,416 KB
testcase_25 AC 105 ms
41,600 KB
testcase_26 AC 105 ms
41,392 KB
testcase_27 AC 115 ms
41,264 KB
testcase_28 AC 104 ms
41,320 KB
testcase_29 AC 118 ms
41,300 KB
testcase_30 AC 109 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n=scan.nextInt();
        long x=scan.nextLong();
        long a=scan.nextLong();
        long b=scan.nextLong();
        long mi=(x+a-1)/a;
        mi=Math.min(mi,((1L<<(n-1))-x+b-1)/b);
        System.out.println(mi);
    }
}
0