結果

問題 No.1286 Stone Skipping
ユーザー proriboneproribone
提出日時 2020-11-13 22:20:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 59,260 KB
最終ジャッジ日時 2024-07-22 21:09:16
合計ジャッジ時間 2,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,928 KB
testcase_01 AC 41 ms
58,512 KB
testcase_02 AC 42 ms
57,624 KB
testcase_03 AC 42 ms
58,196 KB
testcase_04 AC 41 ms
58,244 KB
testcase_05 AC 41 ms
57,656 KB
testcase_06 AC 42 ms
59,060 KB
testcase_07 AC 41 ms
58,460 KB
testcase_08 AC 42 ms
58,592 KB
testcase_09 AC 41 ms
57,336 KB
testcase_10 AC 41 ms
57,972 KB
testcase_11 AC 41 ms
58,060 KB
testcase_12 AC 41 ms
57,556 KB
testcase_13 AC 41 ms
57,988 KB
testcase_14 AC 42 ms
58,588 KB
testcase_15 AC 41 ms
58,936 KB
testcase_16 AC 42 ms
57,820 KB
testcase_17 AC 41 ms
58,144 KB
testcase_18 AC 41 ms
57,944 KB
testcase_19 AC 41 ms
57,796 KB
testcase_20 AC 42 ms
58,184 KB
testcase_21 AC 42 ms
57,864 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 43 ms
58,172 KB
testcase_26 AC 42 ms
58,536 KB
testcase_27 AC 42 ms
58,196 KB
testcase_28 AC 42 ms
58,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(x,D):
    res=0
    while(x):
        res+=x
        x//=2
        if res==D:
            return True
    return False

D=int(input())
ans=D
for x in range(max(0,D//2-200),D//2+200):
    if check(x,D):
        ans=min(ans,x)
print(ans)
0