結果

問題 No.141 魔法少女コバ
ユーザー OnjuOnju
提出日時 2015-02-01 23:41:45
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 55,124 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 05:33:38
合計ジャッジ時間 2,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 93
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define N_MAX 50

typedef long long LL;
using namespace std;

int gcd(int a, int b)
{
	int c;
	while (a != 0)
	{
		c = a;
		a = b%a;
		b = c;
	}
	return b;
}

int main()
{
	int N, M;
	cin >> M >> N;
	int ans = 0;

	int g = gcd(M, N);
	M /= g;
	N /= g;

	while (N != 1 || M != 1)
	{
		//逆数へ
		if (M < N)
		{
			swap(N, M);
			++ans;
		}

		if (N == 1)
		{
			//面倒だから
			ans += M-1;
			break;
		}
		int t = M / N;
		ans += t;
		M -= t * N;
	}

	cout << ans << endl;

	return 0;
}
0