結果

問題 No.598 オーバーフローファンタジー
ユーザー Grenache
提出日時 2017-11-24 22:27:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 5,989 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 55,948 KB
最終ジャッジ日時 2024-11-27 07:24:10
合計ジャッジ時間 7,625 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 WA * 6
権限があれば一括ダウンロードができます

ソースコード

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