답안 #1073496

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1073496 2024-08-24T15:24:41 Z Osplei Mini tetris (IOI16_tetris) C++17
8 / 100
2 ms 436 KB
#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) {
}

ll pos = 0, rot = 0, cnt = 0;

void new_figure(int figure_type) {
  if (!((cnt % 3) & 1)) {
    pos = 0;
    rot = 0;
  } else {
    pos = 2;
    rot = 1;
  }
  cnt++;
}

int get_position() {
	return pos;
}

int get_rotation() {
	return rot;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Game over! After 5 turns.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Win!
2 Correct 1 ms 348 KB Win!
3 Correct 1 ms 348 KB Win!
4 Correct 0 ms 348 KB Win!
5 Correct 0 ms 348 KB Win!
6 Correct 1 ms 348 KB Win!
7 Correct 1 ms 436 KB Win!
8 Correct 2 ms 348 KB Win!
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Game over! After 5 turns.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 348 KB Bad position for figure 3 : 2
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB Game over! After 5 turns.
2 Halted 0 ms 0 KB -