Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
435797 沈洛楠 【C2-10】求数II C++ 解答错误 0 1 MS 244 KB 172 2026-04-11 12:55:00

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main(){ int s=0; for(int i=1;i<=500;i++){ if(i%3==2&&i%5==3||i%7==2) s++; } cout<<s<<endl; return 0; }


测评信息: