-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCounterGame.java
46 lines (41 loc) · 1.09 KB
/
CounterGame.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
43
44
45
46
//link: https://www.hackerrank.com/challenges/counter-game/problem
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class CounterGame {
static String counterGame(long n) {
long counter = n;
byte player = 0;
while(counter != 1){
player ^= 1;
if(isPowerOf2(counter)){
counter -= counter / 2;
}
else{
counter -= largestPowerOf2(counter);
}
}
return player == 1? "Louise":"Richard";
}
static boolean isPowerOf2(long x){
return (x & (x-1)) == 0;
}
static long largestPowerOf2(long x){
while((x & (x-1)) != 0){
x &= x-1;
}
return x;
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int t = in.nextInt();
for(int a0 = 0; a0 < t; a0++){
long n = in.nextLong();
String result = counterGame(n);
System.out.println(result);
}
in.close();
}
}