spoj 1716. Can you answer these queries III 在spoj上做题的时候看到有人提交做这个题目,看名字就知道肯定是数据结构的题目,然后看了看,题意很简单.......然后看了半天也没想到可行的思路,我的思路主要是卡在一段子区间的和可以用sum[ r ] -sum [ l-1]来表示,如过让这个值最大那么贪心就是求给出的[ l , r ] max(s
题目链接: 力扣https://leetcode-cn.com/problems/calculate-money-in-leetcode-bank/ 【分析】先除,看看多少个整周的,再取余,把剩下几天的加进去。 class Solution {public int totalMoney(int n) {int ans = 0, i;int t = n / 7;int k = n % 7;