結果

問題 No.598 オーバーフローファンタジー
ユーザー uafr_csuafr_cs
提出日時 2017-11-24 22:24:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-06-07 17:44:08
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,140 KB
testcase_01 AC 121 ms
41,216 KB
testcase_02 AC 130 ms
41,092 KB
testcase_03 AC 119 ms
41,244 KB
testcase_04 AC 115 ms
40,988 KB
testcase_05 AC 106 ms
39,668 KB
testcase_06 AC 117 ms
40,996 KB
testcase_07 AC 119 ms
41,280 KB
testcase_08 AC 119 ms
41,244 KB
testcase_09 AC 119 ms
41,344 KB
testcase_10 AC 125 ms
41,236 KB
testcase_11 AC 125 ms
41,004 KB
testcase_12 AC 120 ms
40,924 KB
testcase_13 AC 108 ms
39,648 KB
testcase_14 AC 115 ms
39,892 KB
testcase_15 AC 121 ms
41,304 KB
testcase_16 AC 109 ms
39,916 KB
testcase_17 AC 107 ms
40,096 KB
testcase_18 AC 120 ms
41,352 KB
testcase_19 AC 125 ms
41,196 KB
testcase_20 AC 120 ms
40,892 KB
testcase_21 AC 120 ms
40,860 KB
testcase_22 AC 122 ms
41,012 KB
testcase_23 AC 123 ms
41,316 KB
testcase_24 AC 120 ms
41,108 KB
testcase_25 AC 122 ms
41,388 KB
testcase_26 AC 121 ms
41,096 KB
testcase_27 AC 120 ms
41,200 KB
testcase_28 AC 120 ms
41,068 KB
testcase_29 AC 121 ms
41,388 KB
testcase_30 AC 124 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextInt();
		
		final long X = sc.nextLong();
		final long A = sc.nextLong();
		final long B = sc.nextLong();
		
		
		final long A_time = (X + A - 1) / A;
		final long B_time = (((1l << (N - 1)) - X) + B - 1) / B;
		
		//System.out.println((1 << (N - 1)) + " " + X);
		//System.out.println(A_time + " " + B_time);
		
		System.out.println(Math.min(A_time, B_time));
	}
}
0