結果

問題 No.598 オーバーフローファンタジー
ユーザー YamaKasaYamaKasa
提出日時 2018-09-26 15:00:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 2,636 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-10-10 20:33:32
合計ジャッジ時間 7,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,204 KB
testcase_01 AC 131 ms
54,240 KB
testcase_02 AC 128 ms
54,092 KB
testcase_03 AC 129 ms
53,868 KB
testcase_04 AC 127 ms
53,860 KB
testcase_05 AC 130 ms
54,288 KB
testcase_06 AC 129 ms
54,244 KB
testcase_07 AC 130 ms
54,232 KB
testcase_08 AC 131 ms
53,956 KB
testcase_09 AC 128 ms
53,964 KB
testcase_10 AC 130 ms
54,036 KB
testcase_11 AC 125 ms
53,940 KB
testcase_12 AC 129 ms
53,920 KB
testcase_13 AC 129 ms
54,196 KB
testcase_14 AC 125 ms
53,808 KB
testcase_15 AC 128 ms
54,084 KB
testcase_16 AC 125 ms
53,716 KB
testcase_17 AC 129 ms
53,824 KB
testcase_18 AC 128 ms
54,120 KB
testcase_19 AC 128 ms
53,768 KB
testcase_20 AC 127 ms
54,184 KB
testcase_21 AC 133 ms
53,848 KB
testcase_22 AC 127 ms
54,064 KB
testcase_23 WA -
testcase_24 AC 125 ms
54,176 KB
testcase_25 AC 124 ms
54,144 KB
testcase_26 AC 126 ms
54,068 KB
testcase_27 AC 124 ms
54,320 KB
testcase_28 AC 125 ms
53,844 KB
testcase_29 AC 125 ms
54,164 KB
testcase_30 AC 128 ms
53,804 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();
		int max = (int)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