結果

問題 No.1286 Stone Skipping
ユーザー semisagisemisagi
提出日時 2020-11-13 21:38:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 571 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-23 09:50:23
合計ジャッジ時間 2,450 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,392 KB
testcase_01 AC 37 ms
11,392 KB
testcase_02 AC 52 ms
11,392 KB
testcase_03 AC 40 ms
11,392 KB
testcase_04 AC 38 ms
11,392 KB
testcase_05 AC 39 ms
11,392 KB
testcase_06 AC 39 ms
11,392 KB
testcase_07 AC 38 ms
11,392 KB
testcase_08 AC 42 ms
11,392 KB
testcase_09 AC 42 ms
11,392 KB
testcase_10 AC 42 ms
11,392 KB
testcase_11 AC 42 ms
11,392 KB
testcase_12 AC 42 ms
11,392 KB
testcase_13 AC 55 ms
11,392 KB
testcase_14 AC 54 ms
11,392 KB
testcase_15 AC 56 ms
11,392 KB
testcase_16 AC 57 ms
11,392 KB
testcase_17 AC 56 ms
11,392 KB
testcase_18 AC 36 ms
11,392 KB
testcase_19 AC 37 ms
11,392 KB
testcase_20 AC 55 ms
11,392 KB
testcase_21 AC 56 ms
11,392 KB
testcase_22 AC 42 ms
11,392 KB
testcase_23 AC 46 ms
11,392 KB
testcase_24 AC 55 ms
11,264 KB
testcase_25 AC 57 ms
11,392 KB
testcase_26 AC 56 ms
11,392 KB
testcase_27 AC 55 ms
11,392 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction

def read_int():
    return int(input())

def read_ints():
    return list(map(int, input().split()))

D = read_int()

def f(x):
    y = 0
    while x != 0:
        y += x
        if y == D:
            return True
        x //= 2
    return False

answer = 10 ** 100
for i in range(1, 100):
    # x(1 + 1/2 + 1/4 + 1/8 + ...) ~= D
    x = Fraction(D) / ((1 - Fraction(1, 2) ** i) / (1 - Fraction(1, 2)))
    x = int(x)
    for d in range(-10, 10):
        if x + d >= 1 and f(x + d):
            answer = min(answer, x + d)

print(answer)
0