Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
19553 张志鹏 奇怪的车牌号 C++ 通过 100 0 MS 244 KB 285 2021-05-16 17:26:05

Tests(1/1):


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


测评信息: