Submission #499472

# Submission time Handle Problem Language Result Execution time Memory
499472 2021-12-28T13:25:09 Z adam Ljeto (COCI21_ljeto) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
 
using namespace std;
int a[9];
int main()
{
    int t,f,l,p=0,o=0,n;
    cin>>n;
    for (int i=0;i<n;i++)
    {
        cin>>t>>f>>l;
        if (f>=1 && f<=4)
        {
            if (t-a[f]<=10 && a[f]!=0)
            {
                o+=150;
                a[f]=t;
            }
            else
            {
                o+=100;
                a[f]=t;
            }
        }
        else if (a<=8 && a>=5)
        {
            if (t-a[f]<=10 && a[f]!=0)
            {
                p+=150;
                a[f]=t;
            }
            else
            {
                p+=100;
                a[f]=t;
            }
        }
    }
    cout<<o<<' '<<p;
    return 0;
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:25:19: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
   25 |         else if (a<=8 && a>=5)
      |                  ~^~~
Main.cpp:25:27: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
   25 |         else if (a<=8 && a>=5)
      |                          ~^~~