标签:说明 ace 整数 problem space 输入格式 引用 代码量 http
当自然数 n 依次取 1、2、3、……、N 时,算式 ?n/2?+?n/3?+?n/5? 有多少个不同的值?(注:?x? 为取整函数,表示不超过 x 的最大自然数,即 x 的整数部分。)
输入给出一个正整数 N(2≤N≤104)。
在一行中输出题面中算式取到的不同值的个数。
2017
1480
STL
的重要性,掌握了它代码量就少了好多…#include<bits/stdc++.h>
using namespace std;
int main()
{
set<int> s;
int n;
cin >> n;
for(int i=1;i<=n;i++)
s.insert(i/2+i/3+i/5);
cout << s.size();
return 0;
}
https://pintia.cn/problem-sets/994805260223102976/problems/1038429191091781632
标签:说明 ace 整数 problem space 输入格式 引用 代码量 http
原文地址:https://www.cnblogs.com/MartinLwx/p/11614294.html