This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "tetris.h"
void init(int n) {
}
int position;
int rotation;
int cant = 0;
bool par = false;
void new_figure(int figure_type) {
    if(!par){
        rotation = 0;
        position = 0;
        par = 1;
    } else {
        rotation = 2;
        position = 1;
        par = 0;
    }
}
int get_position() {
	return position;
}
int get_rotation() {
	return rotation;
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |