Submission #758322

#TimeUsernameProblemLanguageResultExecution timeMemory
758322KN200711Skyline (IZhO11_skyline)C++14
0 / 100
1 ms212 KiB
# include <bits/stdc++.h> # define ll long long # define fi first # define se second using namespace std; int main() { int N; scanf("%d", &N); vector<int> arr(N); for(int i=0;i<N;i++) scanf("%d", &arr[i]); int ans = 0; for(int i=0;i<N;i++) { if(i == 0) { ans += 3 * arr[i]; } else { if(arr[i-1] >= arr[i]) ans += 2 * arr[i]; else ans += 2 * arr[i] + (arr[i] - arr[i - 1]); } } printf("%d\n", ans); return 0; }

Compilation message (stderr)

skyline.cpp: In function 'int main()':
skyline.cpp:9:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    9 |  scanf("%d", &N);
      |  ~~~~~^~~~~~~~~~
skyline.cpp:11:28: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   11 |  for(int i=0;i<N;i++) scanf("%d", &arr[i]);
      |                       ~~~~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...