結果

問題 No.598 オーバーフローファンタジー
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-24 22:24:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-11-27 07:21:44
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,712 KB
testcase_01 AC 104 ms
39,812 KB
testcase_02 AC 113 ms
41,204 KB
testcase_03 AC 114 ms
41,008 KB
testcase_04 AC 102 ms
40,240 KB
testcase_05 AC 114 ms
41,124 KB
testcase_06 AC 121 ms
40,964 KB
testcase_07 AC 104 ms
39,976 KB
testcase_08 AC 113 ms
40,960 KB
testcase_09 AC 100 ms
40,376 KB
testcase_10 AC 117 ms
41,344 KB
testcase_11 AC 114 ms
41,104 KB
testcase_12 AC 111 ms
41,256 KB
testcase_13 WA -
testcase_14 AC 112 ms
41,284 KB
testcase_15 AC 112 ms
40,944 KB
testcase_16 AC 113 ms
41,392 KB
testcase_17 AC 117 ms
40,940 KB
testcase_18 AC 109 ms
40,528 KB
testcase_19 AC 118 ms
40,988 KB
testcase_20 AC 112 ms
40,960 KB
testcase_21 AC 106 ms
39,848 KB
testcase_22 AC 114 ms
41,212 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 115 ms
40,964 KB
testcase_26 AC 122 ms
41,280 KB
testcase_27 AC 124 ms
40,988 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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,((1<<(n-1))-x+b-1)/b);
        System.out.println(mi);
    }
}
0