結果
| 問題 | No.141 魔法少女コバ |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-10-28 00:32:59 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 506 bytes |
| コンパイル時間 | 2,766 ms |
| コンパイル使用メモリ | 275,620 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-10-28 00:33:06 |
| 合計ジャッジ時間 | 6,985 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 93 |
ソースコード
#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;
inline int solve(int x, int y) {
// cerr << format("{} {}\n", x, y);
if (y == 1) return x - 1;
if (x < y) return solve(y, x) + 1;
assert(x != y);
return solve(x - y, y) + 1;
}
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int x, y;
cin >> x >> y;
int g = gcd(x, y);
x /= g, y /= g;
cout << solve(x, y) << '\n';
return 0;
}
a01sa01to