Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
41276 张志鹏 姐妹数对 C++ 编译错误 0 0 MS 0 KB 211 2022-06-11 16:46:09

Tests(0/0):


/#include<bits/stdc++.h> using namespace std; int n,ans; int main(){ cin>>n; for(int i=1;i<=n-1;i++){ for(int j=i+1;j<=n;j++){ if((i+j)%3==0||(i+j)%7==0) ans++; } } cout<<ans; return 0; }


测评信息: