Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
20001 季洁 最大乘积 C++ 解答错误 30 0 MS 256 KB 359 2021-05-27 21:24:09

Tests(3/10):


#include<bits/stdc++.h> using namespace std; int main(){ int n,i=2,l=0,z=0; long long sum=1; cin>>n; int a[(int)sqrt(n)+1]; while(1){ if(!(n-i>=0)) break; a[++l]=i; n-=i; i++; } int x=l; while(n){ a[x]++; n--; x--; } for(int j=1;j<=l;j++){ sum*=a[j]; } while(sum){ z=z+sum%10; sum/=10; } cout<<z; }


测评信息: