Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
41283 桑迪 姐妹数对 C++ 通过 100 0 MS 248 KB 183 2022-06-11 16:46:58

Tests(10/10):


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


测评信息: