PTA basic 1087 有多少不同的值 (20 分) c++语言实现(g++)

2021-05-29 13:03

阅读:350

标签:count   表示   algorithm   输出题   end   mat   res   取整   部分   

当自然数 n 依次取 1、2、3、……、N 时,算式 ?n/2?+?n/3?+?n/5? 有多少个不同的值?(注:?x? 为取整函数,表示不超过 x 的最大自然数,即 x 的整数部分。)

输入格式:

输入给出一个正整数 N(2N10?4??)。

输出格式:

在一行中输出题面中算式取到的不同值的个数。

输入样例:

2017
 

输出样例:

1480

 

#include 
#include 
#include string>
#include 
#include using namespace std;
int main(){
    int n,count{0},temp;
    cin >> n;
    vectorint> intmap(20000,0);
    for(int i=1;i){
        temp=i/2+i/3+i/5;
        intmap[temp]++;
    }
    for(int i=0;i20000;i++){
        if(intmap[i]>0)count++;
    }
    cout  endl;
}

 

PTA basic 1087 有多少不同的值 (20 分) c++语言实现(g++)

标签:count   表示   algorithm   输出题   end   mat   res   取整   部分   

原文地址:https://www.cnblogs.com/ichiha/p/14766766.html


评论


亲,登录后才可以留言!