Submission #38202

#TimeUsernameProblemLanguageResultExecution timeMemory
38202Just_Solve_The_ProblemMoney (IZhO17_money)C++11
0 / 100
0 ms5920 KiB
#include <bits/stdc++.h> using namespace std; const int N = (int)1e6 + 7; int a[N]; main () { int n; scanf ("%d", &n); int ans = 1; for (int i = 1; i <= n; i++) { scanf ("%d", a + i); if (i > 1) { if (a[i] < a[i - 1]) ans++; } } cout << ans; }

Compilation message (stderr)

money.cpp:9:7: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main () {
       ^
money.cpp: In function 'int main()':
money.cpp:10:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     int n; scanf ("%d", &n);
                            ^
money.cpp:13:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf ("%d", a + i);
                            ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...