Notice
Recent Posts
Recent Comments
Link
목록2026/02/22 (1)
슈콩
[BOJ] 14503 로봇 청소기
[문제]https://www.acmicpc.net/problem/14503 [소스 코드]import java.io.*;import java.util.*;public class Main { static int[] dr = {-1,0,1,0}; static int[] dc = {0,1,0,-1}; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int n = Integer.parseInt(st.nextToken(..
Algorithms/Baekjoon
2026. 2. 22. 15:34