Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
47458 石利伟 奇怪的车牌号 C++ 通过 100 0 MS 256 KB 226 2022-07-14 21:19:10

Tests(1/1):


#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; }


测评信息: