| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19545 | 孙文谦 | 奇怪的车牌号 | C++ | Compile Error | 0 | 0 MS | 0 KB | 235 | 2021-05-16 16:59:29 |
#include<bits/stdc++.h> using namespace std; int main() { int c=0,i,j; for(i=0; i<=6; i++) { for(j=0; j<=6; j++) { if(floor(sqrt(4*i+4*j+12))==sqrt(4*i+4*j+12)) { c++; } } } cout<<c<<endl; return 0; } 0