結果

問題 No.1286 Stone Skipping
ユーザー neterukunneterukun
提出日時 2020-11-13 21:42:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-07-22 20:35:31
合計ジャッジ時間 5,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
58,240 KB
testcase_01 AC 94 ms
58,112 KB
testcase_02 AC 165 ms
57,856 KB
testcase_03 AC 93 ms
57,728 KB
testcase_04 AC 95 ms
57,728 KB
testcase_05 AC 101 ms
57,856 KB
testcase_06 AC 93 ms
58,112 KB
testcase_07 AC 127 ms
58,752 KB
testcase_08 AC 121 ms
58,240 KB
testcase_09 AC 125 ms
58,240 KB
testcase_10 AC 119 ms
57,856 KB
testcase_11 AC 126 ms
57,856 KB
testcase_12 AC 126 ms
58,364 KB
testcase_13 AC 180 ms
57,984 KB
testcase_14 AC 185 ms
57,984 KB
testcase_15 AC 188 ms
58,624 KB
testcase_16 AC 183 ms
58,624 KB
testcase_17 AC 179 ms
58,240 KB
testcase_18 AC 91 ms
58,624 KB
testcase_19 AC 93 ms
58,240 KB
testcase_20 AC 184 ms
58,112 KB
testcase_21 AC 184 ms
57,800 KB
testcase_22 AC 122 ms
59,008 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 185 ms
57,856 KB
testcase_26 AC 184 ms
58,240 KB
testcase_27 AC 183 ms
57,856 KB
testcase_28 AC 184 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())

ans = d
res = d // 2

for val in range(d // 2, d // 2 + 1000000):
    val0 = val
    tmp = val
    val = val >> 1
    while val:
        tmp += val
        if tmp == d:
            ans = min(ans, val0)
            break
        val = val >> 1
print(ans)
0