Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
173547 | cx2024 | 交流 | C++ | 无测评数据 | 0 | 0 MS | 0 KB | 350 | 2024-08-20 21:23:57 |
#include<bits/stdc++.h> using namespace std; int main() { int n,t = 0; cin >> n; int 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 ++){ t += a[x] + a[y] + a[z]; } } } cout << t << endl; return 0; }