Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111936 | 毛泓博(做题专用,大号Fess) | 整数拆分 | C++ | 解答错误 | 66 | 0 MS | 244 KB | 380 | 2023-11-25 09:11:16 |
#include<bits/stdc++.h> using namespace std; int n; int main() { cin>>n; if(n==1) { cout<<0; return 0; } if(n==2) { cout<<1; return 0; } if(n==3) { cout<<2; return 0; } switch(n%3) { case 0: cout<<(n/3)*(n/3)*(n/3); break; case 1: cout<<(n/3)*(n/3)*(n/3+1); break; case 2: cout<<(n/3)*(n/3)*(n/3+2); break; } return 0; }