結果
| 問題 | No.1010 折って重ねて |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-03-20 21:30:14 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 92 ms / 2,000 ms |
| コード長 | 351 bytes |
| 記録 | |
| コンパイル時間 | 322 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-25 17:52:02 |
| 合計ジャッジ時間 | 5,835 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 43 |
ソースコード
# coding: utf-8
# Your code here!
import sys
sys.setrecursionlimit(10**6)
readline = sys.stdin.readline
read = sys.stdin.read
x,y,h = [int(i) for i in read().split()]
x*=1000
y*=1000
if x>y: x,y = y,x
ax = ay = 1
ans = 0
while h*ax<x or h*ay<y:
if h*ax<x: ax *= 2
else: ay *= 2
h*=2
ans += 1
#print(h,x,y,ax,ay)
print(ans)
convexineq