結果

問題 No.1286 Stone Skipping
ユーザー y10y10
提出日時 2020-11-13 22:13:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 302 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 82,976 KB
最終ジャッジ日時 2024-07-22 21:00:01
合計ジャッジ時間 4,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,336 KB
testcase_01 AC 42 ms
53,128 KB
testcase_02 AC 39 ms
53,672 KB
testcase_03 AC 38 ms
53,404 KB
testcase_04 AC 39 ms
53,312 KB
testcase_05 AC 38 ms
52,640 KB
testcase_06 AC 37 ms
53,800 KB
testcase_07 AC 39 ms
52,552 KB
testcase_08 AC 38 ms
54,324 KB
testcase_09 AC 38 ms
54,184 KB
testcase_10 AC 38 ms
52,476 KB
testcase_11 AC 38 ms
52,992 KB
testcase_12 AC 39 ms
52,596 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

ma = int(input())
mi = ma//2

x = 0
while True:
    x = 0
    for p in range(60):
        temp = math.floor(mi*(1/2)**p)
        if temp >= 1:
            x += temp
            if x == ma:
                print(mi)
                exit()
        else:
            mi += 1
            break
0