Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
41341 | 石利伟 | 姐妹数对 | C++ | 通过 | 100 | 0 MS | 252 KB | 256 | 2022-06-11 17:09:35 |
#include<bits/stdc++.h> using namespace std; int ans; int main(){ int n,ans=0; cin>>n; for(int x=1;x<=n;x++){ for(int y=1;y<=n;y++){ if(x!=y){ if((x+y)%3==0||(x+y)%7==0){ ans++; } } } } cout<<ans/2; return 0; }