Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
169507 | C班-陈乐 | 交流 | C++ | 解答错误 | 0 | 86 MS | 256 KB | 350 | 2024-08-20 16:35:50 |
#include <bits/stdc++.h> using namespace std; int main() { long long n,s = 0; cin >> n; long long a[n + 1]; for (int i = 0 ; i < n ; i ++) cin >> a[i]; for (int x = 0 ; x < n - 2 ; x ++) { for (int y = x + 1 ; y < n - 1 ; y ++) { for (int z = y + 1 ; z < n ; z ++) s += a[x] + a[y] + a[z]; } } cout << s; }