【每日一题】倍数求和

文章目录

Tag

【一次遍历】【数组】【2023-10-17】


题目来源

2652. 倍数求和


题目解读

找出 [1. n] 范围内可以被 357 整除的所有整数之和。


解题思路

方法一:一次遍历

题目简单,思路也很明确,枚举区间 [1, n] 内的所有整数 num

  • num % 3 == 0
  • num % 5 == 0
  • num % 7 == 0

以上三个条件满足其一,就将 num 加到 sum 中,sum 初始为 0

实现代码

cpp 复制代码
class Solution {
public:
    int sumOfMultiples(int n) {
        int sum = 0;
        for (int num = 1; num <= n; ++num) {
            if (num % 3 == 0 || num % 5 == 0 || num % 7 == 0) {
                sum += num;
            }
        }
        return sum;
    }
};

复杂度分析

时间复杂度: O ( n ) O(n) O(n)。

空间复杂度: O ( 1 ) O(1) O(1)。


其他语言

c

c 复制代码
int sumOfMultiples(int n){
    int sum = 0;
    for (int num = 1; num <= n; ++num) {
        if (num % 3 == 0 || num % 5 == 0 || num % 7 == 0) {
            sum += num;
        }
    }
    return sum;
}

python3

python3 复制代码
class Solution:
    def sumOfMultiples(self, n: int) -> int:
        sum = 0
        for num in range(1, n+1):
            if num % 3 == 0 or num % 5 == 0 or num % 7 == 0:
                sum += num
        return sum

写在最后

如果文章内容有任何错误或者您对文章有任何疑问,欢迎私信博主或者在评论区指出 💬💬💬。

如果大家有更优的时间、空间复杂度方法,欢迎评论区交流。

最后,感谢您的阅读,如果感到有所收获的话可以给博主点一个 👍 哦。

相关推荐
podongfeng4 天前
leetcode每日一题:数组美丽值求和
java·算法·leetcode·数组·前后缀
FAREWELL000758 天前
C#基础学习(六)函数的变长参数和参数默认值
学习·c#·数组
琳沫lerlee9 天前
【数组去重、分组和拷贝】
javascript·数组
我不是代码教父16 天前
[原创](Modern C++)现代C++的关键性概念: array<>比内置数组更安全
c++·数组·array
心态与习惯23 天前
c++ 中的引用 &
c++·指针·数组·引用·ref·容器传递
平谷一勺1 个月前
go切片定义和初始化
数据结构·golang·数组·切片
Tisfy1 个月前
LeetCode 1472.设计浏览器历史记录:一个数组完成模拟,单次操作均O(1)
服务器·leetcode·浏览器·memcached·题解·模拟·数组
m0_675988231 个月前
Leetcode350:两个数组的交集 II
算法·leetcode·数组·哈希表·python3
Tisfy2 个月前
LeetCode 1287.有序数组中出现次数超过25%的元素:遍历
算法·leetcode·题解·模拟·数组·遍历
中游鱼2 个月前
C# 数组和列表的基本知识及 LINQ 查询
c#·linq·数组·数据处理·list数列