結果

問題 No.1286 Stone Skipping
ユーザー tentententen
提出日時 2021-02-03 11:23:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 75,132 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-06-30 00:14:58
合計ジャッジ時間 6,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,844 KB
testcase_01 AC 112 ms
54,100 KB
testcase_02 AC 110 ms
53,652 KB
testcase_03 AC 103 ms
52,884 KB
testcase_04 AC 111 ms
54,056 KB
testcase_05 WA -
testcase_06 AC 110 ms
54,076 KB
testcase_07 AC 107 ms
53,920 KB
testcase_08 AC 102 ms
52,964 KB
testcase_09 AC 111 ms
52,876 KB
testcase_10 AC 112 ms
52,752 KB
testcase_11 AC 104 ms
52,884 KB
testcase_12 AC 110 ms
53,692 KB
testcase_13 AC 109 ms
53,640 KB
testcase_14 AC 108 ms
53,924 KB
testcase_15 WA -
testcase_16 AC 110 ms
54,080 KB
testcase_17 AC 110 ms
53,864 KB
testcase_18 AC 111 ms
54,076 KB
testcase_19 AC 111 ms
53,832 KB
testcase_20 AC 111 ms
53,712 KB
testcase_21 AC 123 ms
53,884 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 111 ms
52,684 KB
testcase_26 AC 108 ms
53,716 KB
testcase_27 AC 109 ms
53,704 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long d = sc.nextLong();
        long min = d;
        long left = 0;
        long right = d;
        while (right - left > 1) {
            long m = (left + right) / 2;
            long x = 1;
            long sum = 0;
            while (x <= m && sum <= d) {
                sum += m / x;
                if (sum == d) {
                    min = Math.min(min, m);
                }
                x <<= 1;
            }
            if (sum < d) {
                left = m;
            } else {
                right = m;
            }
        }
        System.out.println(min);
    }
}
0