結果

問題 No.1286 Stone Skipping
ユーザー tktk_snsntktk_snsn
提出日時 2020-11-30 00:13:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 59,928 KB
最終ジャッジ日時 2024-09-13 02:12:48
合計ジャッジ時間 2,517 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,400 KB
testcase_01 AC 38 ms
52,820 KB
testcase_02 AC 41 ms
59,364 KB
testcase_03 AC 38 ms
52,340 KB
testcase_04 AC 38 ms
52,704 KB
testcase_05 AC 39 ms
51,756 KB
testcase_06 AC 38 ms
52,820 KB
testcase_07 AC 39 ms
52,548 KB
testcase_08 AC 38 ms
52,616 KB
testcase_09 AC 38 ms
52,536 KB
testcase_10 AC 37 ms
53,076 KB
testcase_11 AC 38 ms
53,252 KB
testcase_12 AC 38 ms
53,728 KB
testcase_13 AC 42 ms
58,784 KB
testcase_14 AC 40 ms
59,380 KB
testcase_15 AC 40 ms
57,576 KB
testcase_16 AC 41 ms
58,800 KB
testcase_17 AC 41 ms
57,780 KB
testcase_18 AC 37 ms
52,072 KB
testcase_19 AC 37 ms
52,000 KB
testcase_20 AC 42 ms
58,288 KB
testcase_21 AC 41 ms
58,360 KB
testcase_22 AC 41 ms
58,764 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 41 ms
58,180 KB
testcase_26 AC 42 ms
57,708 KB
testcase_27 AC 41 ms
58,300 KB
testcase_28 AC 43 ms
59,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())

l = 0
r = D
while r - l > 1:
    m = (r + l) // 2
    cnt = 0
    x = m
    while x:
        cnt += x
        x //= 2
    if cnt < D:
        l = m
    else:
        r = m

for i in range(10**6):
    x = r + i
    tmp = x
    dist = 0
    while True:
        dist += x
        if dist >= D:
            break
        x //= 2
    if D == dist:
        break

print(tmp)
0