結果

問題 No.1286 Stone Skipping
ユーザー tentententen
提出日時 2020-11-25 20:58:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 693 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 61,196 KB
最終ジャッジ日時 2024-07-23 19:26:47
合計ジャッジ時間 9,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
60,804 KB
testcase_01 AC 132 ms
54,108 KB
testcase_02 AC 133 ms
53,848 KB
testcase_03 AC 135 ms
53,872 KB
testcase_04 AC 137 ms
54,024 KB
testcase_05 AC 123 ms
52,548 KB
testcase_06 AC 137 ms
53,908 KB
testcase_07 AC 137 ms
54,100 KB
testcase_08 AC 135 ms
53,964 KB
testcase_09 AC 135 ms
53,800 KB
testcase_10 AC 136 ms
53,972 KB
testcase_11 AC 137 ms
53,948 KB
testcase_12 AC 137 ms
54,156 KB
testcase_13 AC 134 ms
53,852 KB
testcase_14 AC 135 ms
54,024 KB
testcase_15 AC 135 ms
54,060 KB
testcase_16 AC 136 ms
54,172 KB
testcase_17 AC 134 ms
54,128 KB
testcase_18 AC 134 ms
53,852 KB
testcase_19 AC 134 ms
53,796 KB
testcase_20 AC 135 ms
53,932 KB
testcase_21 AC 136 ms
53,860 KB
testcase_22 AC 133 ms
54,140 KB
testcase_23 AC 535 ms
54,328 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
		    }
		}
		for (long i = right; i <= d; i++) {
    		long x = i;
        	long sum = 0;
    		while (x > 0 && sum < d) {
    		    sum += x;
    		    x /= 2;
    		}
    		if (sum == d) {
    		    System.out.println(i);
    		    return;
		    }
		}
	}
}

0