Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
98057 | 广州市第六中学实名上网关晓泽 | 早凉的函数2 | C++ | 运行超时 | 0 | 1000 MS | 1804 KB | 379 | 2023-08-14 11:57:19 |
#include<bits/stdc++.h> using namespace std; #define ll long long ll a[200010],ans; ll fun(ll x) { ll res=0; while(x) { res+=x%10; x-=x%10; x/=10; } return res; } int main() { int n; cin>>n; for(int i=1;i<=n;i++){ cin>>a[i]; } for(int k=1;k<=n;k++){ for(int i=1;i<=n;i++){ ans+=fun(a[i]+a[k]); } } cout<<ans<<endl; return 0; }