Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
113618 黎瑾萱 完美立方 C++ Accepted 9 MS 272 KB 355 2025-03-16 11:27:03

Tests(10/10):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int a,b,c,d; for(int a=2;a<=n;a++){ for(int b=2;b<=a;b++){ for(int c=b;c<a;c++){ for(int d=c;d<a;d++){ if(b*b*b+c*c*c+d*d*d==a*a*a){ cout<<"Cube = "<<a<<", Triple = ("<<b<<","<<c<<","<<d<<")"<<endl; } } } } } return 0; }