Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
41273 | 陈万瑄 | 姐妹数对 | C++ | 通过 | 100 | 0 MS | 252 KB | 215 | 2022-06-11 16:45:55 |
#include<bits/stdc++.h> using namespace std; int n,ans; int main(){ cin>>n; for(int i=1;i<=n;i++){ for(int j=i+1;j<=n;j++){ int t=i+j; if(t%3==0||t%7==0) ans++; } } cout<<ans; return 0; }