結果

問題 No.598 オーバーフローファンタジー
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-16 17:43:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 4,197 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 41,924 KB
最終ジャッジ日時 2024-06-11 22:01:43
合計ジャッジ時間 9,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,688 KB
testcase_01 AC 143 ms
41,528 KB
testcase_02 AC 144 ms
41,448 KB
testcase_03 AC 144 ms
41,452 KB
testcase_04 AC 139 ms
41,196 KB
testcase_05 AC 149 ms
41,716 KB
testcase_06 AC 149 ms
41,480 KB
testcase_07 AC 141 ms
41,444 KB
testcase_08 AC 145 ms
41,204 KB
testcase_09 AC 149 ms
41,468 KB
testcase_10 AC 155 ms
41,332 KB
testcase_11 AC 142 ms
41,404 KB
testcase_12 AC 151 ms
41,536 KB
testcase_13 AC 149 ms
41,460 KB
testcase_14 AC 150 ms
41,688 KB
testcase_15 AC 148 ms
41,192 KB
testcase_16 AC 145 ms
41,432 KB
testcase_17 AC 149 ms
41,196 KB
testcase_18 AC 145 ms
41,392 KB
testcase_19 AC 146 ms
41,536 KB
testcase_20 AC 138 ms
39,864 KB
testcase_21 AC 146 ms
41,476 KB
testcase_22 AC 144 ms
41,416 KB
testcase_23 AC 152 ms
41,652 KB
testcase_24 AC 141 ms
41,384 KB
testcase_25 AC 149 ms
41,312 KB
testcase_26 AC 146 ms
41,924 KB
testcase_27 AC 144 ms
41,492 KB
testcase_28 AC 143 ms
41,320 KB
testcase_29 AC 146 ms
41,356 KB
testcase_30 AC 142 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No598 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextInt();
		long X = sc.nextInt();
		long A = sc.nextInt();
		long B = sc.nextInt();
		long MAX =(long)Math.pow(2, N-1);
		
		System.out.println((long)Math.min(Math.ceil((double)X/A),Math.ceil((double)(MAX-X)/B)));
	}
}
0