Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19545 | 孙文谦 | 奇怪的车牌号 | C++ | 编译错误 | 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