結果

問題 No.415 ぴょん
ユーザー olphe
提出日時 2016-11-15 00:11:52
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 227 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 54,336 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 14:50:44
合計ジャッジ時間 1,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
using namespace std;

long long int N,K;
long long int x;
long long int box;

int main() {
	cin >> N>>K;
	x = N;
	while ((N%K)!=0) {
		box = N%K;
		N = K;
		K = box;
	}
	cout << x / K - 1<<"\n";
	return 0;
}
0