結果
| 問題 | No.1010 折って重ねて |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-12-10 00:23:41 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 498 bytes |
| 記録 | |
| コンパイル時間 | 2,542 ms |
| コンパイル使用メモリ | 275,352 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-12-10 00:23:46 |
| 合計ジャッジ時間 | 4,133 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 43 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
ll x, y, h;
cin >> x >> y >> h;
x *= 1000, y *= 1000;
ll ans = 0;
while (true) {
if (x > y) swap(x, y);
if (x > h)
x = (x + 1) / 2, h *= 2, ans++;
else if (y > h)
y = (y + 1) / 2, h *= 2, ans++;
else
break;
}
cout << ans << '\n';
return 0;
}
a01sa01to