-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
31 lines (23 loc) Β· 922 Bytes
/
Main.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
package DAC.P1074;
import java.io.*;
import java.util.StringTokenizer;
public class Main {
static int N, r, c, ans;
static int[] pow = new int[16];
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/DAC/P1074/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
r = Integer.parseInt(st.nextToken());
c = Integer.parseInt(st.nextToken());
pow[0] = 1;
for (int i = 1; i <= N; i++) pow[i] = 2 * pow[i-1];
for (int i = N; i > 0; i--) {
int unit = pow[i] * pow[i] / 4;
if (r >= pow[i]/2) { r -= pow[i]/2; ans += unit*2; }
if (c >= pow[i]/2) { c -= pow[i]/2; ans += unit; }
}
System.out.println(ans);
}
}