Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
112623 陈致钧 整数拆分 C++ 解答错误 66 0 MS 264 KB 191 2023-11-27 13:54:13

Tests(2/3):


#include<bits/stdc++.h> using namespace std; long long n,a,b,s1,s2; int main() { cin>>n; a=sqrt(n); b=n-a*(a-1); s1=pow(a,a-1)*b; if(b>=2*a-1) s1=pow(a,a)*(b-a); cout<<s1; }


测评信息: