結果

問題 No.598 オーバーフローファンタジー
ユーザー GrenacheGrenache
提出日時 2017-11-24 22:27:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 5,989 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 55,948 KB
最終ジャッジ日時 2024-11-27 07:24:10
合計ジャッジ時間 7,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,440 KB
testcase_01 AC 110 ms
39,944 KB
testcase_02 AC 114 ms
41,720 KB
testcase_03 AC 120 ms
41,288 KB
testcase_04 AC 115 ms
41,164 KB
testcase_05 AC 115 ms
40,992 KB
testcase_06 AC 116 ms
41,012 KB
testcase_07 AC 119 ms
40,988 KB
testcase_08 AC 107 ms
39,964 KB
testcase_09 AC 122 ms
41,204 KB
testcase_10 AC 119 ms
41,156 KB
testcase_11 AC 122 ms
41,012 KB
testcase_12 AC 120 ms
41,004 KB
testcase_13 WA -
testcase_14 AC 122 ms
40,896 KB
testcase_15 AC 123 ms
41,308 KB
testcase_16 AC 125 ms
41,440 KB
testcase_17 AC 120 ms
41,216 KB
testcase_18 AC 121 ms
41,028 KB
testcase_19 AC 110 ms
40,092 KB
testcase_20 AC 122 ms
41,096 KB
testcase_21 AC 120 ms
41,016 KB
testcase_22 AC 123 ms
41,388 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 105 ms
39,876 KB
testcase_26 AC 119 ms
41,192 KB
testcase_27 AC 110 ms
39,988 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder598 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		long x = sc.nextLong();
		long a = sc.nextLong();
		long b = sc.nextLong();

		long min = (x + a - 1) / a;

		long tmp = 0x1 << (n - 1);
		min = Math.min(min, (tmp - x + b - 1) / b);

		pr.println(min);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0