-
Notifications
You must be signed in to change notification settings - Fork 0
/
pract.java
42 lines (32 loc) · 978 Bytes
/
pract.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import java.util.*;
public class pract {
static int node[][];
static int check[][];
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
System.out.println(n/3);
// int T=sc.nextInt();
// int m=sc.nextInt(); // 지도의 크기 n
// int n=sc.nextInt();
// int K=sc.nextInt();
// node = new int[n][m]; // 지도 배열
// check = new int[n][n]; // 지도 방문배열
// // for(int i=0;i<n;i++){
// // for(int j=0;j<m;j++){
// // node[i][j]=0;
// // }
// // }
// for(int i=0;i<K;i++){
// int x=sc.nextInt();
// int y=sc.nextInt();
// node[y][x]=1;
// }
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++){
// System.out.print(node[i][j]+" ");
// }
// System.out.println();
// }
}
}