Submission #1073487

#TimeUsernameProblemLanguageResultExecution timeMemory
1073487OspleiMini tetris (IOI16_tetris)C++17
7 / 100
2 ms348 KiB
#include "tetris.h" #include <bits/stdc++.h> using namespace std; typedef pair<int,int> ii; typedef long long ll; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<ii> vii; typedef vector<vii> wgraf; typedef pair<int,ii> edge; typedef vector <ll> vl; typedef pair <ll, ll> LL; typedef vector <LL> vll; #define UNVISITED 0 #define VISITED 1 #define pb push_back #define F first #define S second void init(int n) { } int position; int rotation; void new_figure(int figure_type) { get_position; get_rotation; } int get_position() { return 0; } int get_rotation() { return 0; }

Compilation message (stderr)

tetris.cpp: In function 'void new_figure(int)':
tetris.cpp:30:3: warning: statement is a reference, not call, to function 'get_position' [-Waddress]
   30 |   get_position;
      |   ^~~~~~~~~~~~
tetris.cpp:30:3: warning: statement has no effect [-Wunused-value]
tetris.cpp:31:3: warning: statement is a reference, not call, to function 'get_rotation' [-Waddress]
   31 |   get_rotation;
      |   ^~~~~~~~~~~~
tetris.cpp:31:3: warning: statement has no effect [-Wunused-value]
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...