Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
98119 呵呵 早凉的函数2 C++ 解答错误 60 673 MS 2608 KB 619 2023-08-14 12:20:02

Tests(30/32):


#include<bits/stdc++.h> using namespace std; const int maxx=2e5+20; long long a[maxx]; int ff[maxx]; long long h,pos,n; int f(long long x) { int ans=0; while(x>=10) { ans+=x%10; x/=10; } ans+=x; return ans; } int main() { ios::sync_with_stdio(0); cin.tie(0),cout.tie(0); cin>>n; for(int i=1;i<=n;i++) { cin>>a[i]; ff[i]=f(a[i]); h+=ff[i]; } if(n<=5000) { for(int k=1;k<=n;k++) for(int i=1;i<=n;i++) pos+=f(a[k]+a[i]); cout<<pos<<'\n'; } else if(n>=5000) { for(int i=1;i<=n;i++) pos=pos+h+ff[i]*n; cout<<pos<<'\n'; } return 0; }


测评信息: