| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 517314 | KoD | Popcount (COCI19_popcount) | Cpython 3 | 15 ms | 2776 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
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| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
