結果

問題 No.1286 Stone Skipping
ユーザー tentententen
提出日時 2020-11-25 20:53:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 644 bytes
コンパイル時間 5,632 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-07-23 19:26:36
合計ジャッジ時間 7,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,244 KB
testcase_01 AC 140 ms
54,140 KB
testcase_02 AC 133 ms
54,184 KB
testcase_03 AC 132 ms
54,016 KB
testcase_04 AC 132 ms
54,020 KB
testcase_05 WA -
testcase_06 AC 132 ms
54,056 KB
testcase_07 AC 133 ms
53,984 KB
testcase_08 AC 131 ms
53,852 KB
testcase_09 AC 132 ms
54,120 KB
testcase_10 AC 133 ms
53,988 KB
testcase_11 AC 133 ms
54,308 KB
testcase_12 AC 132 ms
54,196 KB
testcase_13 AC 133 ms
54,248 KB
testcase_14 AC 134 ms
53,968 KB
testcase_15 WA -
testcase_16 AC 135 ms
54,080 KB
testcase_17 AC 133 ms
53,920 KB
testcase_18 AC 132 ms
53,812 KB
testcase_19 AC 133 ms
54,024 KB
testcase_20 AC 132 ms
54,196 KB
testcase_21 AC 133 ms
54,196 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 130 ms
53,672 KB
testcase_26 AC 133 ms
54,124 KB
testcase_27 AC 131 ms
53,840 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 left = 0;
		long right = d;
		while (right - left > 1) {
		    long m = (left + right) / 2;
		    long x = m;
		    long sum = 0;
		    while (x > 0) {
		        sum += x;
		        x /= 2;
		    }
		    if (sum >= d) {
		        right = m;
		    } else {
		        left = m;
		    }
		}
		long sum = 0;
		long x = right;
		while (x > 0 && sum < d) {
		    sum += x;
		    x /= 2;
		}
		if (sum == d) {
		    System.out.println(right);
		} else {
		    System.out.println(d);
		}
   }
}

0