結果

問題 No.2880 Max Sigma Mod
ユーザー kakel-sankakel-san
提出日時 2024-10-08 23:39:36
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 913 bytes
コンパイル時間 16,483 ms
コンパイル使用メモリ 166,460 KB
実行使用メモリ 185,768 KB
最終ジャッジ日時 2024-10-08 23:39:57
合計ジャッジ時間 21,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,940 KB
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 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 61 ms
31,360 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 62 ms
30,976 KB
testcase_21 AC 65 ms
32,256 KB
testcase_22 WA -
testcase_23 AC 61 ms
31,344 KB
testcase_24 AC 65 ms
32,256 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 61 ms
30,976 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 60 ms
31,104 KB
testcase_34 WA -
testcase_35 AC 60 ms
30,976 KB
testcase_36 AC 62 ms
31,204 KB
testcase_37 AC 62 ms
30,464 KB
testcase_38 AC 61 ms
30,720 KB
testcase_39 AC 61 ms
30,720 KB
testcase_40 AC 61 ms
30,720 KB
testcase_41 AC 62 ms
31,104 KB
testcase_42 AC 62 ms
30,976 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 68 ms
31,104 KB
testcase_48 AC 60 ms
30,976 KB
testcase_49 AC 60 ms
185,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 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[i] -= i;
        }
        for (var i = 2; i <= n; ++i) cum[i] += cum[i - 1];
        --cum[1];
        for (var i = 1; i <= n; ++i) dp[i] += cum[i];
        WriteLine(dp.Max());
    }
}
0