Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
38986 | yuzhengxun | 与7无关的数 | C++ | 通过 | 1 MS | 244 KB | 217 | 2024-01-29 15:35:17 |
#include<bits/stdc++.h> using namespace std; int main() { int n,s=0; cin>>n; for(int i=1;i<=n;i++){ if(i%7==0||i%10==7||i/10==7){ continue; } else { s+=i*i; } } cout<<s; return 0; }