Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
2305 | 吴泽宇 | 奇怪的车牌号 | C++ | 通过 | 100 | 0 MS | 240 KB | 325 | 2019-11-17 09:18:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,g,h,max=0; for(int i=0;i<=6;i++){ for(int j=0;j<=6;j++){ a=i; b=a+1; c=b+1; d=c+1; e=j; f=e+1; g=f+1; h=j+1; int l=a+b+c+d+e+f+g+h; int m=sqrt(l); if(m*m==l){ max++; } } } cout<<9; }