Submission #419900

#TimeUsernameProblemLanguageResultExecution timeMemory
419900Rahat_Khan_PathanCluedo (IOI10_cluedo)C++17
100 / 100
16 ms280 KiB
/*
||-----------------------------------||
||        Rahat Khan Pathan          ||
||      BGC Trust University         ||
||       Department of CSE           ||
||-----------------------------------||
*/
#include<bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
#define ll long long int
#define pub push_back
#define pi 3.14159265359
#define vll vector<ll>
#define All(X) (X).begin(),(X).end()
#define Unique(X) (X).erase(unique(All(X)),(X).end()))
#define fast ios_base::sync_with_stdio(0); cin.tie(0);
#define pi pair<ll,ll>
#define vpair vector<pair<ll,ll> >
#define yes cout<<"YES"<<endl
#define no cout<<"NO"<<endl
#define minus cout<<-1<<endl
using namespace std;
void Solve()
{
    ll i=1,j=1,k=1,x;
    while(1)
    {
        x=Theory(i,j,k);
        if(x==1)
            i++;
        else if(x==2)
            j++;
        else if(x==3)
            k++;
        else break;
    }
    return;
}

Compilation message (stderr)

cluedo.cpp:18: warning: "pi" redefined
   18 | #define pi pair<ll,ll>
      | 
cluedo.cpp:13: note: this is the location of the previous definition
   13 | #define pi 3.14159265359
      |
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...