Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
3480 OscarWLY 合数求和 C++ 通过 0 MS 240 KB 287 2023-01-08 14:35:06

Tests(1/1):


#include<bits/stdc++.h> using namespace std; bool IsHeshu(int x) { for(int i=2;i<x;i++) { if(x%i==0) return true; } return false; } int main() { int n; cin>>n; int ans=0; for(int i=4;i<=n;i++) { if(IsHeshu(i)) ans+=i; } cout<<ans; return 0; }


测评信息: