(UPD: 2024-12-04 14:48 UTC) Judge is not working due to Cloudflare incident. (URL) We can do nothing about it, sorry. After the incident is resolved, we will grade all submissions.

Submission #636116

#TimeUsernameProblemLanguageResultExecution timeMemory
636116shafinalamMemory (IOI10_memory)C++14
50 / 100
14 ms288 KiB
#include "grader.h" #include "memory.h" #include <bits/stdc++.h> using namespace std; typedef long long ll; #define INF 1e18//change to const int INF=1e18 if causing problem const ll MOD=998244353; const ll alt=1e10; const ll inf=1e9+7;//Precalc is not a bad idea //#define int ll #define pb push_back #define pf push_front #define mp make_pair #define fi first #define se second #define mod(a) (a+inf)%inf #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define sz(a) a.size() void play() { int i; char a, b; vector<int> v; v.clear(); for(int i=1;i<=50;i++){ v.pb(i); } while(!v.empty()){ char a,b; int y; for(int i=1;i<sz(v);i++){ a=faceup(v[0]); b=faceup(v[i]); if(a==b){ y=i; } } v.erase(v.begin()+y); v.erase(v.begin()); } }

Compilation message (stderr)

memory.cpp: In function 'void play()':
memory.cpp:32:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |      for(int i=1;i<sz(v);i++){
      |                   ^
memory.cpp:22:8: warning: unused variable 'i' [-Wunused-variable]
   22 |    int i;
      |        ^
memory.cpp:23:9: warning: unused variable 'a' [-Wunused-variable]
   23 |    char a, b;
      |         ^
memory.cpp:23:12: warning: unused variable 'b' [-Wunused-variable]
   23 |    char a, b;
      |            ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...