結果
問題 | No.2939 Sigma Popcount Problem |
ユーザー | rlangevin |
提出日時 | 2024-10-19 11:50:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,393 ms / 2,000 ms |
コード長 | 577 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 256,080 KB |
最終ジャッジ日時 | 2024-11-23 15:09:30 |
合計ジャッジ時間 | 11,549 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
55,296 KB |
testcase_01 | AC | 42 ms
55,172 KB |
testcase_02 | AC | 42 ms
55,048 KB |
testcase_03 | AC | 43 ms
55,032 KB |
testcase_04 | AC | 42 ms
55,236 KB |
testcase_05 | AC | 45 ms
55,468 KB |
testcase_06 | AC | 43 ms
55,764 KB |
testcase_07 | AC | 43 ms
56,236 KB |
testcase_08 | AC | 1,288 ms
255,592 KB |
testcase_09 | AC | 597 ms
167,532 KB |
testcase_10 | AC | 785 ms
192,420 KB |
testcase_11 | AC | 820 ms
204,700 KB |
testcase_12 | AC | 709 ms
179,436 KB |
testcase_13 | AC | 607 ms
167,976 KB |
testcase_14 | AC | 505 ms
157,672 KB |
testcase_15 | AC | 1,393 ms
255,716 KB |
testcase_16 | AC | 94 ms
79,436 KB |
testcase_17 | AC | 1,312 ms
256,080 KB |
testcase_18 | AC | 222 ms
94,760 KB |
testcase_19 | AC | 1,386 ms
255,360 KB |
testcase_20 | AC | 48 ms
60,900 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))