CCF 202012-1 期末预测之安全指数 (水题)

传送门

CCF 202012-1 期末预测之安全指数 (水题)

CCF 202012-1 期末预测之安全指数 (水题)

CCF 202012-1 期末预测之安全指数 (水题)

思路:啊这,可不就是水题嘛,不过java菜狗连输入输出都要搜索┭┮﹏┭┮。

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        int n = input.nextInt();
        int ans = 0, x, y;
        for(int i = 0; i < n; i ++){
            x = input.nextInt();
            y = input.nextInt();
            ans += x*y;
        }
        System.out.println(Math.max(ans, 0));
    }
}

 

上一篇:202012-1 期末预测之安全指数


下一篇:23种设计模式 这栏文章让你拿捏得死死的 学不会来打我——构建型模式——工厂模式 抽象工厂模式 单例模式 建造者模式 原型模式