Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60439 | wangjiajian | J2 | C++ | 通过 | 100 | 0 MS | 248 KB | 361 | 2022-10-15 11:37:13 |
#include <bits/stdc++.h> using namespace std; int n, m, x, ans; int main() { // freopen("J2.in", "r", stdin); // freopen("J2.out", "w", stdout); scanf("%d%d", &n, &m); while(n) { x += n%10; n /= 10; } while(m) { ans += x*(m%10); m /= 10; } printf("%d\n", ans); return 0; }