結果

問題 No.598 オーバーフローファンタジー
ユーザー Grenache
提出日時 2017-11-24 22:32:43
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 4,346 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-12-26 01:37:18
合計ジャッジ時間 7,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

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 = 0x1L << (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