| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19824 | 桑迪 | 奇怪的车牌号 | C++ | Accepted | 100 | 0 MS | 248 KB | 196 | 2021-05-23 10:44:00 |
#include<bits/stdc++.h> using namespace std; int ans; int main(){ for(int i=6;i<=30;i+=4){ for(int j=6;j<=30;j+=4){ if(!(i+j-16)||!(i+j-36)) ans++; } } cout<<ans; return 0; }