比赛 |
202110省实验桐柏一中普及组联赛 |
评测结果 |
AAAWWWWWWW |
题目名称 |
分数运算 |
最终得分 |
30 |
用户昵称 |
weivi |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2021-10-18 19:18:05 |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int a1[1006],z[1006],s1,s2,a2[1006];
int main()
{
freopen("fenshu.in","r",stdin);
freopen("fenshu.out","w",stdout);
int n,m,x=0,y=0;
cin>>n>>m;
while(n--)
{
s1++;
cin>>a1[s1]>>a2[s1];
if(x==0 && y==0) x=a1[s1],y=a2[s1];
else
{
x=x*(a2[s1]*y/__gcd(a2[s1],y)/y) + a1[s1]*(a2[s1]*y/__gcd(a2[s1],y)/a2[s1]);
y=a2[s1]*y/__gcd(a2[s1],y);
}
//cout<<x<<" "<<y<<endl;
}
while(m--)
{
s2++;
cin>>z[s2];
y*=z[s2];
}
if(x==y) cout<<1<<endl;
else cout<<x/__gcd(x,y)<<" "<<y/__gcd(x,y)<<endl;
return 0;
}