Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
47458 | 石利伟 | 奇怪的车牌号 | C++ | Accepted | 100 | 0 MS | 256 KB | 226 | 2022-07-14 21:19:10 |
#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; return 0; }