結果

問題 No.1286 Stone Skipping
ユーザー tentententen
提出日時 2020-11-25 21:00:37
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 693 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 80,136 KB
実行使用メモリ 61,320 KB
最終ジャッジ日時 2024-07-23 19:27:10
合計ジャッジ時間 9,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
59,572 KB
testcase_01 AC 127 ms
54,044 KB
testcase_02 AC 114 ms
52,704 KB
testcase_03 AC 122 ms
52,624 KB
testcase_04 AC 128 ms
53,792 KB
testcase_05 AC 129 ms
54,020 KB
testcase_06 AC 128 ms
53,792 KB
testcase_07 AC 134 ms
54,072 KB
testcase_08 AC 128 ms
54,212 KB
testcase_09 AC 132 ms
54,180 KB
testcase_10 AC 124 ms
54,084 KB
testcase_11 AC 129 ms
53,900 KB
testcase_12 AC 128 ms
53,896 KB
testcase_13 AC 127 ms
53,908 KB
testcase_14 AC 129 ms
53,772 KB
testcase_15 AC 130 ms
54,184 KB
testcase_16 AC 126 ms
53,788 KB
testcase_17 AC 129 ms
53,928 KB
testcase_18 AC 130 ms
54,128 KB
testcase_19 AC 130 ms
53,788 KB
testcase_20 AC 129 ms
54,020 KB
testcase_21 AC 133 ms
54,008 KB
testcase_22 AC 128 ms
54,196 KB
testcase_23 AC 536 ms
53,992 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