Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
98149 | hswfwkj | 早凉的函数2 | C++ | 解答错误 | 80 | 896 MS | 33084 KB | 1097 | 2023-08-14 12:23:01 |
#include<bits/stdc++.h> #define int long long using namespace std; const int N = 2e5 + 5; int n, mx, mp, ans; int a[N], c[N][20]; inline int f(int x) { int res = 0; while(x) { res += x % 10; x /= 10; } return res; } signed main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin >> n; for(int i = 1; i <= n; i++) cin >> a[i], mx = max(mx, a[i]); for(int i = 1; i <= n; i++) { int tmp = a[i], res = 0; while(tmp) { mp = max(mp, tmp % 10); c[i][++res] = tmp % 10; tmp /= 10; } } if(n <= 5000) { for(int i = 1; i <= n; i++) for(int j = 1; j <= n; j++) ans += f(a[i] + a[j]); cout << ans; return 0; } if(mx <= 9) { int cnt[10]; memset(cnt, 0, sizeof(cnt)); for(int i = 1; i <= n; i++) cnt[a[i]]++; for(int i = 1; i <= n; i++) for(int j = 0; j <= 9; j++) ans += cnt[j] * f(a[i] + j); cout << ans; return 0; } if(mp <= 4) { for(int i = 1; i <= 16; i++) for(int j = 1; j <= n; j++) ans += c[j][i] * n * 2; cout << ans; return 0; } return 0; }