結果

問題 No.598 オーバーフローファンタジー
ユーザー GrenacheGrenache
提出日時 2017-11-24 22:32:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 3,612 ms
コンパイル使用メモリ 75,232 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-06-07 17:47:35
合計ジャッジ時間 7,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,132 KB
testcase_01 AC 120 ms
40,812 KB
testcase_02 AC 119 ms
41,532 KB
testcase_03 AC 125 ms
41,128 KB
testcase_04 AC 120 ms
41,224 KB
testcase_05 AC 120 ms
41,120 KB
testcase_06 AC 118 ms
41,112 KB
testcase_07 AC 121 ms
41,032 KB
testcase_08 AC 117 ms
40,800 KB
testcase_09 AC 115 ms
41,144 KB
testcase_10 AC 105 ms
40,068 KB
testcase_11 AC 115 ms
41,012 KB
testcase_12 AC 121 ms
41,452 KB
testcase_13 AC 106 ms
39,848 KB
testcase_14 AC 117 ms
41,020 KB
testcase_15 AC 104 ms
40,264 KB
testcase_16 AC 115 ms
41,120 KB
testcase_17 AC 122 ms
41,188 KB
testcase_18 AC 112 ms
40,260 KB
testcase_19 AC 119 ms
41,208 KB
testcase_20 AC 121 ms
41,104 KB
testcase_21 AC 121 ms
41,120 KB
testcase_22 AC 121 ms
41,048 KB
testcase_23 AC 106 ms
40,036 KB
testcase_24 AC 121 ms
41,072 KB
testcase_25 AC 107 ms
40,056 KB
testcase_26 AC 110 ms
40,000 KB
testcase_27 AC 126 ms
41,312 KB
testcase_28 AC 118 ms
41,044 KB
testcase_29 AC 103 ms
40,036 KB
testcase_30 AC 115 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

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