Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
12671 | qilinart | 奇怪的车牌号 | C++ | 解答错误 | 0 | 0 MS | 244 KB | 412 | 2021-01-25 14:27:20 |
#include<bits/stdc++.h> using namespace std; int PF[110],x; int main(){ for(int i=1;i<=10;i++)PF[i*i]=1; for(int a=0;a<=6;a++) for(int b=a+1;b<=7;b++) for(int c=b+1;c<=8;c++) for(int d=c+1;d<=9;d++) for(int e=0;e<=6;e++) for(int f=e+1;f<=7;f++) for(int g=f+1;g<=8;g++) for(int h=g+1;h<=9;h++) if(PF[a+b+c+d+e+f+g+h]==1)x++; cout<<x; return 0; }