結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
75,264 KB
testcase_01 AC 62 ms
75,264 KB
testcase_02 AC 82 ms
75,776 KB
testcase_03 AC 66 ms
75,264 KB
testcase_04 AC 65 ms
75,264 KB
testcase_05 AC 66 ms
75,392 KB
testcase_06 AC 64 ms
75,264 KB
testcase_07 AC 63 ms
75,520 KB
testcase_08 AC 77 ms
75,560 KB
testcase_09 AC 76 ms
75,264 KB
testcase_10 AC 75 ms
75,348 KB
testcase_11 AC 78 ms
75,264 KB
testcase_12 AC 76 ms
75,648 KB
testcase_13 AC 88 ms
75,136 KB
testcase_14 AC 87 ms
75,336 KB
testcase_15 AC 85 ms
75,520 KB
testcase_16 AC 85 ms
75,136 KB
testcase_17 AC 85 ms
75,520 KB
testcase_18 AC 61 ms
75,264 KB
testcase_19 AC 60 ms
75,008 KB
testcase_20 AC 85 ms
75,392 KB
testcase_21 AC 84 ms
75,528 KB
testcase_22 AC 75 ms
75,392 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 89 ms
75,396 KB
testcase_26 AC 92 ms
75,392 KB
testcase_27 AC 87 ms
75,264 KB
testcase_28 AC 86 ms
75,520 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-100000),D//2+100000):
    if check(x,D):
        ans=min(ans,x)
print(ans)
0