結果
問題 | No.598 オーバーフローファンタジー |
ユーザー | htensai |
提出日時 | 2019-11-14 17:45:01 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 146 ms / 2,000 ms |
コード長 | 362 bytes |
コンパイル時間 | 2,189 ms |
コンパイル使用メモリ | 73,584 KB |
実行使用メモリ | 41,596 KB |
最終ジャッジ日時 | 2024-09-21 21:26:17 |
合計ジャッジ時間 | 7,903 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long x = sc.nextInt(); long a = sc.nextInt(); long b = sc.nextInt(); long max = (long)(Math.pow(2, n - 1)); long count = Math.min((x + a - 1) / a, (max - x + b - 1) / b); System.out.println(count); } }