# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
824117 | sven | Dango Maker (JOI18_dango_maker) | C++17 | 294 ms | 35628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 3 * 1000 + 10;
char tab[MAXN][MAXN];
bool peut[MAXN][MAXN][2];
// 0 -> droite
// 1 -> bas
//
int mod3(int n)
{
return ((n % 3) + 3) % 3;
}
int main()
{
ios::sync_with_stdio(false);
int N , M;
cin >> N >> M;
for (int i = 0 ; i < N ; i++)
{
for (int j = 0 ; j < M ; j++)
{
cin >> tab[i][j];
}
}
for (int i = 0 ; i < N ; i++)
{
for (int j = 0 ; j < M ; j++)
{
if (j + 2 < M && tab[i][j] == 'R' && tab[i][j + 1] == 'G' && tab[i][j + 2] == 'W')
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |