結果

問題 No.1010 折って重ねて
ユーザー konchanksukonchanksu
提出日時 2020-03-20 23:06:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-15 08:19:05
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import log

x, y, h = map(int, input().split())
if x > y:
    x, y = y, x

x, y = map(lambda x: x*1000, [x, y])
times = 0

times += int(log(x / h) / log(4))
if log(x / h) / log(4) - times > 0:
    times += 1

tmp = times
times += int(log(y / (h * (2 ** tmp))) / log(4))
if (log(y / (h * (2 ** tmp))) / log(4)) - times + tmp > 0:
    times += 1

print(times)
0