提交时间:2021-05-16 17:26:05

运行 ID: 19553

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