結果

問題 No.598 オーバーフローファンタジー
ユーザー 37zigen37zigen
提出日時 2020-03-22 01:46:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 2,726 ms
コンパイル使用メモリ 75,256 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-12-24 06:04:53
合計ジャッジ時間 6,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,100 KB
testcase_01 AC 120 ms
40,952 KB
testcase_02 AC 119 ms
41,292 KB
testcase_03 AC 118 ms
41,008 KB
testcase_04 AC 105 ms
40,504 KB
testcase_05 AC 111 ms
40,848 KB
testcase_06 AC 119 ms
41,096 KB
testcase_07 AC 115 ms
41,044 KB
testcase_08 AC 115 ms
41,244 KB
testcase_09 AC 105 ms
40,412 KB
testcase_10 AC 113 ms
41,248 KB
testcase_11 AC 114 ms
41,244 KB
testcase_12 AC 107 ms
40,260 KB
testcase_13 AC 104 ms
40,104 KB
testcase_14 AC 107 ms
39,936 KB
testcase_15 AC 117 ms
41,276 KB
testcase_16 AC 112 ms
41,352 KB
testcase_17 AC 105 ms
40,200 KB
testcase_18 AC 104 ms
40,200 KB
testcase_19 AC 115 ms
41,384 KB
testcase_20 AC 103 ms
39,988 KB
testcase_21 AC 112 ms
41,228 KB
testcase_22 AC 113 ms
41,260 KB
testcase_23 AC 112 ms
41,104 KB
testcase_24 AC 111 ms
41,264 KB
testcase_25 AC 112 ms
41,288 KB
testcase_26 AC 125 ms
41,324 KB
testcase_27 AC 98 ms
39,992 KB
testcase_28 AC 111 ms
41,052 KB
testcase_29 AC 116 ms
40,980 KB
testcase_30 AC 118 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		long X=sc.nextLong();
		long A=sc.nextLong();
		long B=sc.nextLong();
		long ans=Math.min((X+A-1)/A,((1L<<N-1)-X+B-1)/B);
		System.out.println(ans);
	}


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0