結果

問題 No.598 オーバーフローファンタジー
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-16 16:06:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 2,825 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-06-11 18:21:35
合計ジャッジ時間 7,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,216 KB
testcase_01 AC 111 ms
53,764 KB
testcase_02 AC 114 ms
54,316 KB
testcase_03 AC 117 ms
54,136 KB
testcase_04 AC 114 ms
54,012 KB
testcase_05 AC 111 ms
53,980 KB
testcase_06 AC 112 ms
54,248 KB
testcase_07 AC 113 ms
54,000 KB
testcase_08 AC 112 ms
54,136 KB
testcase_09 AC 115 ms
54,204 KB
testcase_10 AC 110 ms
54,120 KB
testcase_11 AC 102 ms
53,040 KB
testcase_12 AC 115 ms
54,228 KB
testcase_13 AC 115 ms
54,296 KB
testcase_14 AC 115 ms
54,244 KB
testcase_15 AC 101 ms
53,020 KB
testcase_16 AC 103 ms
53,188 KB
testcase_17 AC 109 ms
54,048 KB
testcase_18 AC 111 ms
53,656 KB
testcase_19 AC 113 ms
53,772 KB
testcase_20 AC 115 ms
53,988 KB
testcase_21 AC 112 ms
54,156 KB
testcase_22 AC 113 ms
54,460 KB
testcase_23 WA -
testcase_24 AC 102 ms
53,004 KB
testcase_25 AC 114 ms
54,152 KB
testcase_26 AC 111 ms
54,120 KB
testcase_27 AC 100 ms
53,116 KB
testcase_28 AC 117 ms
54,096 KB
testcase_29 AC 121 ms
54,192 KB
testcase_30 AC 116 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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