結果

問題 No.2939 Sigma Popcount Problem
ユーザー Sato kamoSato kamo
提出日時 2024-11-14 19:54:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 147 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 142,520 KB
最終ジャッジ日時 2024-11-14 19:54:45
合計ジャッジ時間 42,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,356 KB
testcase_01 AC 46 ms
131,868 KB
testcase_02 AC 55 ms
71,744 KB
testcase_03 AC 52 ms
140,528 KB
testcase_04 AC 54 ms
72,752 KB
testcase_05 AC 54 ms
142,520 KB
testcase_06 AC 53 ms
70,268 KB
testcase_07 AC 53 ms
141,592 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
num = int(input())
for _ in range(num):
    print(reduce(lambda x,y:x+ bin(y)[2:].count("1"),range(1,int(input())+1)))
0