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

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

1081. Rational Sum (20)

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

題目鏈接: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; }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 镇赉县| 福清市| 河北区| 双城市| 陆川县| 潮安县| 巫山县| 和硕县| 荣昌县| 黄大仙区| 武山县| 江门市| 英吉沙县| 罗平县| 南充市| 武安市| 灵山县| 三台县| 襄城县| 峡江县| 天津市| 江都市| 依兰县| 凤山县| 绥阳县| 台东县| 哈尔滨市| 佛教| 桂阳县| 鹤庆县| 萨迦县| 加查县| 三台县| 措勤县| 白银市| 美姑县| 广饶县| 云南省| 新泰市| 大姚县| 泽普县|