Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
112153 陈致钧 整数拆分 C++ 解答错误 66 0 MS 260 KB 155 2023-11-25 10:42:43

Tests(2/3):


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


测评信息: