class Solution {
public:
int totalMoney(int n) {
int week,offset;
int total=0;
for(int i=0;i<n;i++){
week=i/7;
offset=i%7+1;
total+=week+offset;
}
return total;
}
};
这里计算偏移量从零开始,可以避免前一个轮回结束数字为0