結果

問題 No.598 オーバーフローファンタジー
ユーザー tentententen
提出日時 2020-09-06 16:27:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-11-29 07:16:21
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,236 KB
testcase_01 AC 119 ms
41,372 KB
testcase_02 AC 120 ms
41,440 KB
testcase_03 AC 117 ms
41,392 KB
testcase_04 AC 116 ms
41,324 KB
testcase_05 AC 117 ms
41,112 KB
testcase_06 AC 124 ms
41,580 KB
testcase_07 AC 119 ms
41,372 KB
testcase_08 AC 101 ms
41,608 KB
testcase_09 AC 115 ms
41,080 KB
testcase_10 AC 120 ms
41,428 KB
testcase_11 AC 117 ms
41,428 KB
testcase_12 AC 112 ms
41,508 KB
testcase_13 AC 140 ms
41,228 KB
testcase_14 AC 117 ms
41,096 KB
testcase_15 AC 117 ms
41,236 KB
testcase_16 AC 105 ms
40,996 KB
testcase_17 AC 106 ms
41,416 KB
testcase_18 AC 110 ms
41,192 KB
testcase_19 AC 113 ms
41,248 KB
testcase_20 AC 120 ms
41,196 KB
testcase_21 AC 119 ms
41,244 KB
testcase_22 AC 115 ms
41,088 KB
testcase_23 AC 120 ms
40,952 KB
testcase_24 AC 109 ms
41,448 KB
testcase_25 AC 105 ms
41,240 KB
testcase_26 AC 127 ms
41,496 KB
testcase_27 AC 118 ms
41,596 KB
testcase_28 AC 121 ms
41,608 KB
testcase_29 AC 114 ms
41,216 KB
testcase_30 AC 108 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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