| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 41286 | 陶俊宸 | 姐妹数对 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 184 | 2022-06-11 16:49:13 |
#include<iostream> short n,ans; int main(){ scanf("%hd",&n); for(short i=0;i<n;i++) for(short j=0;j<n;j++) if(!((i+j)%3)||!((i+j)%7)) ans++; printf("%hd",ans/2); return 0; }