結果

問題 No.2939 Sigma Popcount Problem
ユーザー kakel-sankakel-san
提出日時 2024-11-09 20:46:19
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 14,520 ms
コンパイル使用メモリ 170,656 KB
実行使用メモリ 190,212 KB
最終ジャッジ日時 2024-11-09 20:46:39
合計ジャッジ時間 19,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,696 KB
testcase_01 AC 55 ms
29,312 KB
testcase_02 AC 56 ms
29,952 KB
testcase_03 AC 54 ms
29,568 KB
testcase_04 AC 56 ms
29,184 KB
testcase_05 AC 55 ms
29,568 KB
testcase_06 AC 55 ms
29,672 KB
testcase_07 AC 55 ms
29,696 KB
testcase_08 AC 210 ms
47,320 KB
testcase_09 AC 130 ms
37,120 KB
testcase_10 AC 154 ms
39,040 KB
testcase_11 AC 158 ms
39,552 KB
testcase_12 AC 143 ms
38,520 KB
testcase_13 AC 131 ms
37,248 KB
testcase_14 AC 120 ms
35,304 KB
testcase_15 AC 220 ms
47,756 KB
testcase_16 AC 71 ms
30,464 KB
testcase_17 AC 217 ms
47,124 KB
testcase_18 AC 191 ms
39,936 KB
testcase_19 AC 215 ms
48,124 KB
testcase_20 AC 56 ms
190,212 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new long[t];
        for (var u = 0; u < t; ++u)
        {
            var n = long.Parse(ReadLine());
            ++n;
            for (var i = 0; i < 40; ++i)
            {
                var b = 2L << i;
                ans[u] += n - b / 2 * (n / b) - Math.Min(n % b, b / 2);
            }
        }
        WriteLine(string.Join("\n", ans));
    }
}
0