Submission #1073494

# Submission time Handle Problem Language Result Execution time Memory
1073494 2024-08-24T15:23:19 Z Osplei Mini tetris (IOI16_tetris) C++17
0 / 100
1 ms 348 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;
  }
}

int get_position() {
	return pos;
}

int get_rotation() {
	return rot;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Game over! After 2 turns.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Game over! After 3 turns.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Game over! After 2 turns.
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Bad position for figure 3 : 2
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Game over! After 2 turns.
2 Halted 0 ms 0 KB -