結果
問題 | No.2939 Sigma Popcount Problem |
ユーザー | rlangevin |
提出日時 | 2024-10-19 11:50:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,609 ms / 2,000 ms |
コード長 | 577 bytes |
コンパイル時間 | 446 ms |
コンパイル使用メモリ | 82,888 KB |
実行使用メモリ | 255,992 KB |
最終ジャッジ日時 | 2024-10-19 11:50:44 |
合計ジャッジ時間 | 13,626 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
55,244 KB |
testcase_01 | AC | 43 ms
55,712 KB |
testcase_02 | AC | 43 ms
55,320 KB |
testcase_03 | AC | 42 ms
55,792 KB |
testcase_04 | AC | 42 ms
55,740 KB |
testcase_05 | AC | 43 ms
55,168 KB |
testcase_06 | AC | 42 ms
55,388 KB |
testcase_07 | AC | 42 ms
57,008 KB |
testcase_08 | AC | 1,552 ms
255,992 KB |
testcase_09 | AC | 669 ms
167,576 KB |
testcase_10 | AC | 916 ms
192,104 KB |
testcase_11 | AC | 902 ms
204,464 KB |
testcase_12 | AC | 820 ms
179,428 KB |
testcase_13 | AC | 713 ms
167,880 KB |
testcase_14 | AC | 558 ms
157,992 KB |
testcase_15 | AC | 1,609 ms
255,488 KB |
testcase_16 | AC | 93 ms
79,424 KB |
testcase_17 | AC | 1,556 ms
255,404 KB |
testcase_18 | AC | 247 ms
94,556 KB |
testcase_19 | AC | 1,561 ms
255,724 KB |
testcase_20 | AC | 47 ms
60,784 KB |
ソースコード
import sys input = sys.stdin.readline sys.setrecursionlimit(10**7) from functools import lru_cache import pypyjit pypyjit.set_param('max_unroll_recursion=-1') two = [1] * 65 for i in range(64): two[i + 1] = two[i] * 2 @lru_cache(maxsize=None) def f(n): if n <= 0: return 0 now = 0 for i in range(1, 65): if two[i] - 1 > n: break now = two[i] - 1 r = n - now return f(now // 2) * 2 + (now + 1) // 2 + f(r - 1) + r T = int(input()) for _ in range(T): N = int(input()) print(f(N))