# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
799347 | 2023-07-31T13:06:49 Z | Tunglam07 | Autići (COCI22_autici) | C++17 | 4 ms | 840 KB |
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; if(n==1) { cout << 0; return 0; } int sum,a[n+1]; for(int i=1;i<=n;i++) { cin >> a[i]; sum+=a[i]; } sum*=2; sum=sum-a[1]-a[n]; cout << sum; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 4 ms | 840 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 316 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 4 ms | 840 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |