답안 #69660

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
69660 2018-08-21T11:04:48 Z win11905 Mini tetris (IOI16_tetris) C++11
29 / 100
5 ms 728 KB
#include "tetris.h"
#include <bits/stdc++.h>
using namespace std;

int state;

void init(int n) {
	state = 0;
}

int position;
int rotation;

void new_figure(int figure_type) {
	if(figure_type == 1) {
		position = 1, rotation = 0;
	} else if(figure_type == 2) {
		if(state == 0) position = 0, rotation = 0, state = 4;
		else if(state == 1) position = 1, rotation = 0, state = 0;
		else if(state == 2) position = 0, rotation = 1, state = 1;
		else if(state == 3) position = 0, rotation = 0, state = 0;
		else if(state == 4) position = 2, rotation = 1, state = 3;
		else if(state == 5) position = 1, rotation = 0, state = 4;
	} else if(figure_type == 3) {
		if(state == 0) position = 0, rotation = 0, state = 5;
		else if(state == 1) position = 1, rotation = 1, state = 3;
		else if(state == 2) position = 0, rotation = 3, state = 4;
		else if(state == 3) position = 0, rotation = 0, state = 1;
		else if(state == 4) position = 1, rotation = 2, state = 2;
		else if(state == 5) position = 1, rotation = 2, state = 0;
	}
}

int get_position() {
	return position;
}

int get_rotation() {
	return rotation;
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 380 KB Bad position for figure 1 : 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 380 KB Win!
2 Correct 3 ms 416 KB Win!
3 Correct 2 ms 532 KB Win!
4 Correct 3 ms 532 KB Win!
5 Correct 3 ms 588 KB Win!
6 Correct 3 ms 588 KB Win!
7 Correct 3 ms 596 KB Win!
8 Correct 4 ms 632 KB Win!
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 380 KB Bad position for figure 1 : 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 3 ms 632 KB Win!
2 Correct 3 ms 728 KB Win!
3 Correct 3 ms 728 KB Win!
4 Correct 3 ms 728 KB Win!
5 Correct 3 ms 728 KB Win!
6 Correct 3 ms 728 KB Win!
7 Correct 4 ms 728 KB Win!
8 Correct 5 ms 728 KB Win!
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 380 KB Bad position for figure 1 : 1
2 Halted 0 ms 0 KB -