【PTA】L1-009 N个数求和

https://pintia.cn/problem-sets/994805046380707840/problems/994805133597065216

本题不难… gcd + lcm 就搞定。

public class Main {
    static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    static StreamTokenizer st = new StreamTokenizer(br);
    static PrintWriter out = new PrintWriter(new BufferedOutputStream(System.out));

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        String[] A = sc.next().split("/");
        int a = Integer.parseInt(A[0]); // 分子
        int b = Integer.parseInt(A[1]); // 分母
        int t = gcd(a, b);
        if(t != 0) {
            a /= t;
            b /= t;
        }
        n--;
        while(n-- != 0) {
            A = sc.next().split("/");
            int aa = Integer.parseInt(A[0]);
            int bb = Integer.parseInt(A[1]);
            int lcm = lcm(b, bb); // 作用:通分时要求最小公倍数
            a = a * lcm / b + aa * lcm / bb;
            b = lcm;
            int gcd = gcd(a, b);
            if(gcd != 0) { // 化简
                a /= gcd;
                b /= gcd;
            }
        }
        if(a != 0 && b != 0 && Math.abs(a) < Math.abs(b)) out.printf("%d/%d", a % b, b); // 真分数
        else if(a % b == 0) out.printf("%d", a / b); // 整数
        else out.printf("%d %d/%d", a / b, a % b, b); // 假分数 => 带分数
        out.flush();
    }

    public static int lcm(int a, int b) {
        return a * b / gcd(a, b);
    }

    public static int gcd(int a, int b) {
        return b == 0 ? a : gcd(b, a % b);
    }

    public static int nextInt() throws Exception {
        st.nextToken();
        return (int) st.nval;
    }
    public static String nextStr() throws Exception {
        st.nextToken();
        return st.sval;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值