結果

問題 No.2939 Sigma Popcount Problem
ユーザー Sato kamoSato kamo
提出日時 2024-11-14 20:02:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 236 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 138,532 KB
最終ジャッジ日時 2024-11-14 20:03:01
合計ジャッジ時間 40,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
58,644 KB
testcase_01 AC 38 ms
127,320 KB
testcase_02 AC 44 ms
68,976 KB
testcase_03 AC 44 ms
136,184 KB
testcase_04 AC 45 ms
69,152 KB
testcase_05 AC 45 ms
138,532 KB
testcase_06 AC 44 ms
67,240 KB
testcase_07 AC 44 ms
137,252 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 #

num = int(input())  # テストケースの数
for _ in range(num):
    a = int(input())  # 各テストケースのN
    result = 0
    for i in range(1, a+1):
        result += bin(i).count('1')  # popcountの計算
    print(result)
0