# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
446056 | 233 | Robot (JOI21_ho_t4) | Java | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
import java.util.*;
import java.io.*;
import java.awt.Point;
import static java.lang.Math.*;
public class Solution {
public static LinkedList<Integer>[] edges;
public static int n, m;
public static void main(String[] args) throws IOException{
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(input.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
edges = new LinkedList[n];
for(int i = 0;i<n;i++) {
edges[i] = new LinkedList<Integer>();
}
for(int i = 0;i<m;i++) {
st = new StringTokenizer(input.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int c = Integer.parseInt(st.nextToken());
int p = Integer.parseInt(st.nextToken());
edges[a].add(b);
pair pair = new pair(p, c);
}
System.out.println(3);
}
static class pair{
int c, p;
public pair(int c, int p) {
this.c = c;
this.p = p;
}
}
}