結果

問題 No.1010 折って重ねて
ユーザー 沙耶花沙耶花
提出日時 2020-03-20 21:26:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 4,502 ms
コンパイル使用メモリ 191,656 KB
最終ジャッジ日時 2025-01-09 08:11:41
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 43
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000


int main(){
    
	long long x,y,h;
	cin>>x>>y>>h;
	
	x*=1000;
	y*=1000;
	
	if(x>y)swap(x,y);
	
	int ans = 0;
	
	while(true){
		if(x>h){
			y*=2;
			h*=4;
			ans++;
		}
		else if(y>h){
			x*=2;
			h*=4;
			ans++;
		}
		else{
			break;
		}
	}
	
	cout<<ans<<endl;
	
    return 0;
}
0