結果

問題 No.2880 Max Sigma Mod
ユーザー kakel-sankakel-san
提出日時 2024-10-08 23:42:57
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 78 ms / 3,000 ms
コード長 894 bytes
コンパイル時間 9,747 ms
コンパイル使用メモリ 167,012 KB
実行使用メモリ 185,984 KB
最終ジャッジ日時 2024-10-08 23:43:11
合計ジャッジ時間 13,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
30,464 KB
testcase_01 AC 61 ms
30,960 KB
testcase_02 AC 60 ms
30,848 KB
testcase_03 AC 59 ms
30,848 KB
testcase_04 AC 60 ms
30,960 KB
testcase_05 AC 78 ms
33,664 KB
testcase_06 AC 67 ms
33,280 KB
testcase_07 AC 65 ms
32,740 KB
testcase_08 AC 67 ms
32,768 KB
testcase_09 AC 65 ms
32,128 KB
testcase_10 AC 64 ms
32,612 KB
testcase_11 AC 64 ms
32,840 KB
testcase_12 AC 62 ms
32,128 KB
testcase_13 AC 63 ms
31,488 KB
testcase_14 AC 69 ms
32,768 KB
testcase_15 AC 69 ms
34,560 KB
testcase_16 AC 70 ms
34,560 KB
testcase_17 AC 71 ms
34,176 KB
testcase_18 AC 70 ms
34,560 KB
testcase_19 AC 68 ms
34,560 KB
testcase_20 AC 68 ms
31,104 KB
testcase_21 AC 63 ms
32,100 KB
testcase_22 AC 66 ms
33,116 KB
testcase_23 AC 60 ms
31,104 KB
testcase_24 AC 65 ms
32,236 KB
testcase_25 AC 67 ms
34,048 KB
testcase_26 AC 68 ms
34,176 KB
testcase_27 AC 67 ms
34,048 KB
testcase_28 AC 69 ms
34,560 KB
testcase_29 AC 65 ms
32,896 KB
testcase_30 AC 59 ms
30,592 KB
testcase_31 AC 59 ms
30,968 KB
testcase_32 AC 61 ms
31,104 KB
testcase_33 AC 59 ms
30,592 KB
testcase_34 AC 60 ms
30,944 KB
testcase_35 AC 61 ms
30,592 KB
testcase_36 AC 65 ms
30,948 KB
testcase_37 AC 60 ms
30,464 KB
testcase_38 AC 60 ms
30,848 KB
testcase_39 AC 60 ms
30,848 KB
testcase_40 AC 60 ms
30,720 KB
testcase_41 AC 60 ms
30,848 KB
testcase_42 AC 60 ms
30,848 KB
testcase_43 AC 60 ms
30,848 KB
testcase_44 AC 60 ms
30,720 KB
testcase_45 AC 59 ms
30,848 KB
testcase_46 AC 59 ms
31,104 KB
testcase_47 AC 61 ms
31,232 KB
testcase_48 AC 60 ms
30,720 KB
testcase_49 AC 60 ms
185,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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 int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var dp = new long[n + 1];
        for (var i = 1; i <= n; ++i) dp[i] = i * (m - 1L);
        var cum = new long[n + 1];
        for (var i = 2; i <= m; ++i)
        {
            for (var j = i; j <= n; j += i) cum[j] -= i;
        }
        for (var i = 2; i <= n; ++i) cum[i] += cum[i - 1];
        for (var i = 1; i <= n; ++i) dp[i] += cum[i];
        WriteLine(dp.Max());
    }
}
0