結果

問題 No.1286 Stone Skipping
ユーザー neterukunneterukun
提出日時 2020-11-13 21:40:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 58,880 KB
最終ジャッジ日時 2024-07-22 20:34:31
合計ジャッジ時間 2,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 49 ms
57,856 KB
testcase_02 AC 50 ms
58,112 KB
testcase_03 AC 42 ms
58,496 KB
testcase_04 AC 43 ms
58,112 KB
testcase_05 AC 43 ms
58,112 KB
testcase_06 AC 43 ms
57,728 KB
testcase_07 AC 45 ms
58,240 KB
testcase_08 AC 45 ms
58,112 KB
testcase_09 AC 46 ms
57,728 KB
testcase_10 AC 44 ms
58,112 KB
testcase_11 AC 43 ms
58,112 KB
testcase_12 AC 44 ms
57,728 KB
testcase_13 AC 50 ms
58,112 KB
testcase_14 AC 49 ms
57,984 KB
testcase_15 AC 57 ms
58,496 KB
testcase_16 AC 49 ms
58,112 KB
testcase_17 AC 50 ms
57,728 KB
testcase_18 AC 42 ms
58,112 KB
testcase_19 AC 42 ms
57,984 KB
testcase_20 AC 55 ms
58,112 KB
testcase_21 AC 52 ms
57,716 KB
testcase_22 AC 48 ms
58,880 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 51 ms
57,856 KB
testcase_26 AC 51 ms
57,856 KB
testcase_27 AC 54 ms
57,728 KB
testcase_28 AC 52 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = int(input())

ans = d
res = d // 2

for val in range(d // 2, d // 2 + 100000):
    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