| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19553 | 张志鹏 | 奇怪的车牌号 | C++ | Accepted | 100 | 0 MS | 244 KB | 285 | 2021-05-16 17:26:05 |
#include<bits/stdc++.h> using namespace std; int Answer; int main(){ for(int x=0;x<=6;x++){ for(int y=0;y<=6;y++){ for(int z=4;z<=7;z++){ //1+2+3+1+2+3=12<4*4 //6+7+8+9+6+7+8+9>7*7 if(4*x+6+4*y+6==z*z) Answer++; } } } cout<<Answer; return 0; }