diff --git "a/khj20006/202502/03 BOJ G5 \354\260\250\355\212\270.md" "b/khj20006/202502/03 BOJ G5 \354\260\250\355\212\270.md" new file mode 100644 index 00000000..cac5f858 --- /dev/null +++ "b/khj20006/202502/03 BOJ G5 \354\260\250\355\212\270.md" @@ -0,0 +1,61 @@ +```java + +import java.util.*; +import java.io.*; + +class Main { + + // IO field + static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); + static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); + static StringTokenizer st; + + static void nextLine() throws Exception {st = new StringTokenizer(br.readLine());} + static int nextInt() {return Integer.parseInt(st.nextToken());} + static long nextLong() {return Long.parseLong(st.nextToken());} + static void bwEnd() throws Exception {bw.flush();bw.close();} + + // Additional field + + static int N; + static int ans = 0; + static int[] A = new int[8]; + + static void sol(int pos, int choose, int[] arr) { + if(pos == N) { + int res = 0; + for(int i=1;i