From 912adfa3eeeac3fff371724e337650d649e9f43e Mon Sep 17 00:00:00 2001 From: belowyoon <92996412+belowyoon@users.noreply.github.com> Date: Mon, 30 Oct 2023 06:23:08 +0900 Subject: [PATCH] =?UTF-8?q?[Gold=20V]=20Title:=20=EB=A1=9C=EB=B4=87=20?= =?UTF-8?q?=EC=B2=AD=EC=86=8C=EA=B8=B0,=20Time:=200=20ms,=20Memory:=202156?= =?UTF-8?q?=20KB=20-BaekjoonHub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../README.md" | 51 +++++++++++++++ ...05\354\262\255\354\206\214\352\270\260.cc" | 62 +++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 "\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/README.md" create mode 100644 "\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260.cc" diff --git "a/\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/README.md" "b/\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/README.md" new file mode 100644 index 0000000..65b35a1 --- /dev/null +++ "b/\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/README.md" @@ -0,0 +1,51 @@ +# [Gold V] 로봇 청소기 - 14503 + +[문제 링크](https://www.acmicpc.net/problem/14503) + +### 성능 요약 + +메모리: 2156 KB, 시간: 0 ms + +### 분류 + +구현, 시뮬레이션 + +### 제출 일자 + +2023년 10월 30일 06:22:57 + +### 문제 설명 + +
로봇 청소기와 방의 상태가 주어졌을 때, 청소하는 영역의 개수를 구하는 프로그램을 작성하시오.
+ +로봇 청소기가 있는 방은
로봇 청소기는 다음과 같이 작동한다.
+ +첫째 줄에 방의 크기
셋째 줄부터
로봇 청소기가 작동을 시작한 후 작동을 멈출 때까지 청소하는 칸의 개수를 출력한다.
+ diff --git "a/\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260.cc" "b/\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260.cc" new file mode 100644 index 0000000..e0d5e30 --- /dev/null +++ "b/\353\260\261\354\244\200/Gold/14503.\342\200\205\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260/\353\241\234\353\264\207\342\200\205\354\262\255\354\206\214\352\270\260.cc" @@ -0,0 +1,62 @@ +#include