답안 #194107

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
194107 2020-01-15T15:23:32 Z Juanes24 Mini tetris (IOI16_tetris) C++14
0 / 100
3 ms 376 KB
#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 = 2;
        par = 1;
    }
}

int get_position() {
	return position;
}

int get_rotation() {
	return rotation;
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 376 KB Bad position for figure 1 : 2
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 376 KB Bad position for figure 2 : 2
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 376 KB Bad position for figure 1 : 2
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 256 KB Bad position for figure 3 : 2
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 376 KB Bad position for figure 1 : 2
2 Halted 0 ms 0 KB -