제출 #499402

#제출 시각아이디문제언어결과실행 시간메모리
499402Alisaf9Ljeto (COCI21_ljeto)C++14
0 / 50
1 ms204 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n,q,f=0,s=0,w,e;
    cin>>n;
    int a[100000];

    pair<int,int>pp[1009];
    for(int i=0;i<n;i++)
    {
        cin>>pp[i].second>>pp[i].first>>q;

    }
    for(int i=0;i<n;i++)
    {
        if(pp[i].first<5)
            f+=100;
        else
            s+=100;
        if(pp[i].first==pp[i-1].first)
        {
            if(pp[i].second-pp[i-1].second<=10)
            {
                if(pp[i].first<5)
            f+=50;
            }
            else
                s+=50;

        }
    }
    cout<<f<<" "<<s;
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

Main.cpp: In function 'int main()':
Main.cpp:7:21: warning: unused variable 'w' [-Wunused-variable]
    7 |     int n,q,f=0,s=0,w,e;
      |                     ^
Main.cpp:7:23: warning: unused variable 'e' [-Wunused-variable]
    7 |     int n,q,f=0,s=0,w,e;
      |                       ^
Main.cpp:9:9: warning: unused variable 'a' [-Wunused-variable]
    9 |     int a[100000];
      |         ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...