結果
問題 | No.141 魔法少女コバ |
ユーザー |
![]() |
提出日時 | 2017-04-28 22:55:56 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 972 bytes |
コンパイル時間 | 1,200 ms |
コンパイル使用メモリ | 159,852 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 18:26:31 |
合計ジャッジ時間 | 3,515 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 93 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; } template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; } typedef unsigned long long ull; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef pair<int, pii> P; const ll INF = 1ll<<60; const ll MOD = 1000000007; const double EPS = 1e-10; ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); } int main() { ll m, n; cin >> m >> n; ll g = gcd(m, n); m /= g; n /= g; ll ans = 0; while (m != 1 || n != 1) { if (m < n) { swap(m, n); ans++; } if (n == 1) break; // m / n (m > n) ll now = m / n; m -= n * now; ans += now; } ans += m - 1; cout << ans << endl; return 0; }