| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1154170 | ainunnajib | Po (COCI21_po) | Pypy 3 | 147 ms | 64244 KiB | 
n = int(input())
l = list(map(int, input().split()))
cur = 0
ans = 0
for x in l:
    if x > cur:
        ans += 1
    cur = x
if l[0] != l[-1]:
    ans += 1
print(ans)
Compilation message (stdout)
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
