結果

問題 No.2125 Inverse Sum
ユーザー kotatsugamekotatsugame
提出日時 2022-11-18 21:39:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 80,832 KB
実行使用メモリ 7,768 KB
最終ジャッジ日時 2024-09-20 02:02:44
合計ジャッジ時間 1,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:16:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   16 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int gcd(int a,int b)
{
	while(b)
	{
		int g=a%b;
		a=b;
		b=g;
	}
	return a;
}
int P,Q;
main()
{
	cin>>P>>Q;
	{
		int g=gcd(P,Q);
		P/=g;
		Q/=g;
	}
	vector<int>div;
	for(int i=1;i*i<=Q;i++)if(Q%i==0)
	{
		div.push_back(i);
		if(Q/i>i)div.push_back(Q/i);
	}
	vector<pair<long,long> >ans;
	for(int N:div)for(int M:div)if(Q/N%M==0)
	{
		long p=(long)Q*(N+M);
		long q=(long)P*N*M;
		if(p%q==0)ans.push_back(make_pair(p/q*N,p/q*M));
	}
	sort(ans.begin(),ans.end());
	ans.erase(unique(ans.begin(),ans.end()),ans.end());
	cout<<ans.size()<<"\n";
	for(pair<long,long>p:ans)cout<<p.first<<" "<<p.second<<"\n";
}
0