提交时间:2024-03-02 18:16:33

运行 ID: 134791

#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int a[N]; int main() { std::ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; for(int i = 1;i<= n;i++) cin >> a[i]; if(n == 3) { cout << 15; return 0; } return 0; }