結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー kakel-sankakel-san
提出日時 2024-11-09 20:57:29
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 914 bytes
コンパイル時間 7,208 ms
コンパイル使用メモリ 166,904 KB
実行使用メモリ 37,412 KB
最終ジャッジ日時 2024-11-09 20:57:53
合計ジャッジ時間 17,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
32,128 KB
testcase_01 AC 46 ms
28,928 KB
testcase_02 AC 45 ms
28,672 KB
testcase_03 AC 90 ms
30,208 KB
testcase_04 AC 47 ms
28,416 KB
testcase_05 AC 45 ms
28,672 KB
testcase_06 AC 45 ms
28,544 KB
testcase_07 AC 44 ms
28,416 KB
testcase_08 AC 44 ms
28,672 KB
testcase_09 AC 45 ms
28,392 KB
testcase_10 AC 44 ms
28,928 KB
testcase_11 AC 61 ms
29,824 KB
testcase_12 AC 72 ms
29,824 KB
testcase_13 AC 61 ms
29,952 KB
testcase_14 AC 57 ms
29,824 KB
testcase_15 AC 69 ms
29,952 KB
testcase_16 AC 63 ms
29,952 KB
testcase_17 AC 566 ms
29,824 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
08_evil_01.txt -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (113 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 n = NN;
        var ans = 0L;
        var mod = 998_244_353;
        for (var i = 1; i <= n; ++i)
        {
            var sq = (int)Math.Sqrt(i);
            var sub = 0;
            for (var j = 1; j <= i; ++j)
            {
                if (i / j <= sq) break;
                ans = (ans + i / j) % mod;
                ++sub;
            }
            for (var k = sq; k > 0; --k)
            {
                ans = (ans + (i / k - sub) * k) % mod;
                sub = i / k;
            }
        }
        WriteLine(ans);
    }
}
0