Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
112341 | 陈志轩 | 整数拆分 | C++ | 通过 | 100 | 0 MS | 264 KB | 292 | 2023-11-25 17:03:20 |
#include<bits/stdc++.h> #define int long long using namespace std; int ans; signed main(){ int n; cin>>n; for (int i = 2;i <= n;i++){ int x = n / i; int y = n % i; ans = max(ans,(long long)(pow(x,i - y) * pow(x + 1,y))); } cout<<ans; return 0; }