1956
-
[BOJ - Gold IV] 운동 / ⭕Algorithm/BOJ 2024. 8. 19. 14:34
운동1. 제출 코드 (24분 00초 / 플로이드 워셜)import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.StringTokenizer;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int V = In..