結果

問題 No.598 オーバーフローファンタジー
ユーザー YamaKasaYamaKasa
提出日時 2018-09-26 15:03:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 3,020 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 41,248 KB
最終ジャッジ日時 2024-10-10 20:44:20
合計ジャッジ時間 8,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,044 KB
testcase_01 AC 119 ms
40,004 KB
testcase_02 AC 129 ms
41,064 KB
testcase_03 AC 131 ms
40,796 KB
testcase_04 AC 118 ms
40,084 KB
testcase_05 AC 131 ms
41,120 KB
testcase_06 AC 131 ms
41,088 KB
testcase_07 AC 117 ms
39,792 KB
testcase_08 AC 128 ms
41,072 KB
testcase_09 AC 129 ms
41,048 KB
testcase_10 AC 128 ms
41,008 KB
testcase_11 AC 130 ms
41,228 KB
testcase_12 AC 132 ms
41,044 KB
testcase_13 AC 118 ms
39,800 KB
testcase_14 AC 129 ms
41,012 KB
testcase_15 AC 130 ms
40,976 KB
testcase_16 AC 131 ms
41,224 KB
testcase_17 AC 118 ms
39,648 KB
testcase_18 AC 131 ms
41,032 KB
testcase_19 AC 129 ms
40,836 KB
testcase_20 AC 131 ms
41,104 KB
testcase_21 AC 130 ms
40,768 KB
testcase_22 AC 132 ms
41,172 KB
testcase_23 AC 130 ms
41,200 KB
testcase_24 AC 130 ms
40,788 KB
testcase_25 AC 134 ms
41,080 KB
testcase_26 AC 136 ms
41,248 KB
testcase_27 AC 132 ms
40,908 KB
testcase_28 AC 136 ms
40,824 KB
testcase_29 AC 131 ms
41,196 KB
testcase_30 AC 128 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int X = scan.nextInt();
		int A = scan.nextInt();
		int B = scan.nextInt();
		scan.close();
		long max = (long)Math.pow(2, N - 1);
		int t1 = (int)Math.ceil((double)X / A);
		int t2 = (int)Math.ceil(((double)max - X) / B);
		int ans = Math.min(t1, t2);
		System.out.println(ans);
	}
}
0