国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

1081. Rational Sum (20)

2019-11-11 04:04:55
字體:
來源:轉載
供稿:網友

題目鏈接:https://www.patest.cn/contests/pat-a-PRactise/1081 Given N rational numbers in the form “numerator/denominator”, you are supposed to calculate their sum.

Input Specification:

Each input file contains one test case. Each case starts with a positive integer N (<=100), followed in the next line N rational numbers “a1/b1 a2/b2 …” where all the numerators and denominators are in the range of “long int”. If there is a negative number, then the sign must appear in front of the numerator.

Output Specification:

For each test case, output the sum in the simplest form “integer numerator/denominator” where “integer” is the integer part of the sum, “numerator” < “denominator”, and the numerator and the denominator have no common factor. You must output only the fractional part if the integer part is 0.

Sample Input 1: 5 2/5 4/15 1/30 -2/60 8/3 Sample Output 1: 3 1/3 Sample Input 2: 2 4/3 2/3 Sample Output 2: 2 Sample Input 3: 3 1/3 -1/6 1/8 Sample Output 3: 7/24 注意點:數據范圍為int,當兩個分母相乘時,最大可以達到long long,所以如果使用int就會溢出,有一個測試點錯誤

#include<cstdio>#include<algorithm>using namespace std;typedef long long ll;const int maxn=110;ll a[maxn],b[maxn];//分別存放分子數組,分母數組 ll gcd(ll x,ll y){//求最大公約數 if(y==0) return x; else return gcd(y,x%y);}int main(){ int n; scanf("%d",&n); for(int i=0;i<n;i++){ scanf("%lld/%lld",&a[i],&b[i]); } ll x=b[0]; for(int i=1;i<n;i++){//求分母數組的最小公倍數 x=x*b[i]/gcd(x,b[i]); } for(int i=0;i<n;i++){ a[i]=a[i]*(x/b[i]); } ll ans1=0,ans2; for(int i=0;i<n;i++){ ans1+=a[i]; } ll t=gcd(abs(ans1),abs(x)); ans1/=t,ans2=x/t;// printf("%d %d/n",ans1,ans2); if(ans2==1){ printf("%d/n",ans1); }else if(abs(ans1)>ans2){ printf("%lld %lld/%lld/n",ans1/ans2,abs(ans1%ans2),ans2); }else{ printf("%lld/%lld/n",ans1,ans2); } return 0; }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 芮城县| 资中县| 黎平县| 衡东县| 郧西县| 安西县| 莫力| 苍溪县| 新乡县| 凤翔县| 新建县| 江北区| 洪洞县| 孝义市| 谢通门县| 余江县| 玉环县| 会同县| 汝城县| 内江市| 乌恰县| 东乡县| 铅山县| 临沧市| 琼海市| 玉环县| 印江| 黄冈市| 连平县| 宁明县| 大港区| 苏尼特左旗| 江永县| 高州市| 蚌埠市| 尉犁县| 宕昌县| 阿尔山市| 乌海市| 张家口市| 安福县|