답안 #1098667

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1098667 2024-10-09T16:28:36 Z VMaksimoski008 Airplane (NOI23_airplane) C++17
0 / 100
25 ms 1880 KB
#include <bits/stdc++.h>
#define ar array
//#define int long long

using namespace std;

using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;

const int mod = 1e9 + 7;
const int LOG = 20;
const int maxn = 1e5 + 5;

signed main() {
    int n, m; cin >> n >> m;
    vector<int> h(n+1);
    for(int i=1; i<=n; i++) cin >> h[i];
    cout << n - 1 + *max_element(h.begin(), h.end()) << '\n';
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 25 ms 1880 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 428 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 428 KB Output is correct
2 Incorrect 0 ms 348 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Incorrect 25 ms 1880 KB Output isn't correct
3 Halted 0 ms 0 KB -