from audioop import reverse
n, m = map(int, input().split())
k = 1
while k < n:
s = ''
while len(s) < n:
s += '1' * k
s += '0' * k
b = int((s[:n])[::-1], 2)
print('A=((A&{})+((A>>{})&{}))'.format(b, k, b))
k *= 2
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
15 ms |
2764 KB |
Wrong output format. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
2776 KB |
Wrong output format. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
2772 KB |
Wrong output format. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
13 ms |
2764 KB |
Wrong output format. |
2 |
Halted |
0 ms |
0 KB |
- |