結果
問題 | No.737 PopCount |
ユーザー | simamumu |
提出日時 | 2018-09-28 22:04:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-10-12 06:20:20 |
合計ジャッジ時間 | 1,460 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 36 ms
11,520 KB |
testcase_11 | AC | 36 ms
11,648 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 36 ms
11,520 KB |
testcase_16 | AC | 35 ms
11,648 KB |
testcase_17 | WA | - |
ソースコード
from collections import defaultdict,deque import sys,heapq,bisect,math,itertools,string,queue,datetime sys.setrecursionlimit(10**8) INF = float('inf') mod = 10**9+7 eps = 10**-7 def inpl(): return list(map(int, input().split())) def inpls(): return list(input().split()) N = int(input()) L = N.bit_length() d2 = [pow(2,i,mod) for i in range(300)] ans = 0 for i in range(L): n = N//d2[i+1] a = (d2[i]+d2[i+1]-1)*d2[i]//2 d = d2[2*i+1] tmp1 = n*(2*a+(n-1)*d)//2 MIN = d2[i+1]*(n+1)-d2[i] MAX = min(N,MIN+d2[i]) tmp2 = (MIN+MAX)*(MAX-MIN+1)//2 ans += tmp1+tmp2 ans %= mod print(ans%mod)