結果

問題 No.598 オーバーフローファンタジー
ユーザー tentententen
提出日時 2020-09-06 16:26:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-11-29 07:16:09
合計ジャッジ時間 7,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,392 KB
testcase_01 AC 142 ms
41,344 KB
testcase_02 AC 138 ms
41,232 KB
testcase_03 AC 134 ms
41,324 KB
testcase_04 AC 137 ms
41,624 KB
testcase_05 AC 139 ms
41,592 KB
testcase_06 AC 137 ms
41,076 KB
testcase_07 AC 137 ms
41,364 KB
testcase_08 AC 137 ms
41,268 KB
testcase_09 AC 140 ms
41,112 KB
testcase_10 AC 137 ms
41,260 KB
testcase_11 AC 139 ms
41,400 KB
testcase_12 AC 138 ms
41,120 KB
testcase_13 AC 139 ms
41,448 KB
testcase_14 AC 139 ms
41,304 KB
testcase_15 AC 137 ms
41,516 KB
testcase_16 AC 139 ms
41,600 KB
testcase_17 AC 138 ms
41,188 KB
testcase_18 AC 139 ms
41,252 KB
testcase_19 AC 142 ms
41,332 KB
testcase_20 AC 135 ms
41,344 KB
testcase_21 AC 140 ms
41,308 KB
testcase_22 AC 139 ms
41,300 KB
testcase_23 AC 140 ms
41,232 KB
testcase_24 WA -
testcase_25 AC 138 ms
41,736 KB
testcase_26 AC 138 ms
41,324 KB
testcase_27 AC 140 ms
41,164 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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