2021全国高校计算机能力挑战赛(初赛)Java试题四

某游戏公司设计了一个奖励活动,给N个用户(1<=N<=10^7)连续编号为1到N,依据用户的编号S发放奖励。

 

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        int L = scanner.nextInt();
        int x = scanner.nextInt();
        int y = scanner.nextInt();
        int z = scanner.nextInt();
        int res = 0;
        ArrayList<Integer> arr = new ArrayList<>();
        for (int i = 1; i <= N - L + 1; i++) {
            int currentRes = 0;
            for(int k = i ; k <= L + i-1 ; k++) {
                arr.add(k);
            }
            currentRes = getCards(arr, x, y, z);
            res = Math.max(res, currentRes);
            arr.clear();
        }
        System.out.println(res);
    }

    public static int getCards(ArrayList<Integer> arr, int x, int y, int z) {
        int res = 0;
        for (int i = 0; i < arr.size(); i++) {
            res += getCard(arr.get(i), x, y, z);
        }
        return res;
    }

    public static int getCard(int n, int x, int y, int z) {
        if (n % (x * y * z) == 0) {
            return 5;
        } else if (n % (x * y) == 0 || n % (y * z) == 0 || n % (x * z) == 0) {
            return 3;
        } else if (n % x == 0 || n % y == 0 || n % z == 0) {
            return 1;
        } else {
            return 0;
        }
    }
}

  • 2
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值