Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
24705 | LeoWang | 与7无关的数 | C++ | 通过 | 0 MS | 252 KB | 323 | 2023-08-16 09:59:43 |
#include <iostream> #include <algorithm> #include <cstring> using namespace std; int n; int main() { cin >> n; int res = 0; for (int i = 1; i <= n; i++) { if (i % 7 == 0 || to_string(i).find('7') != -1) continue; res += i * i; } cout << res << endl; return 0; }