結果

問題 No.2229 Treasure Searching Rod (Hard)
ユーザー kakel-sankakel-san
提出日時 2023-11-09 22:06:03
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 6,834 ms
コンパイル使用メモリ 169,612 KB
実行使用メモリ 199,160 KB
最終ジャッジ日時 2024-09-26 00:36:29
合計ジャッジ時間 14,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
30,080 KB
testcase_01 AC 49 ms
30,208 KB
testcase_02 AC 51 ms
30,464 KB
testcase_03 AC 50 ms
30,064 KB
testcase_04 AC 49 ms
30,208 KB
testcase_05 AC 51 ms
29,952 KB
testcase_06 AC 50 ms
30,336 KB
testcase_07 AC 231 ms
62,948 KB
testcase_08 AC 232 ms
63,048 KB
testcase_09 AC 236 ms
63,124 KB
testcase_10 AC 245 ms
63,080 KB
testcase_11 AC 250 ms
63,336 KB
testcase_12 AC 149 ms
58,708 KB
testcase_13 AC 145 ms
58,804 KB
testcase_14 AC 151 ms
59,012 KB
testcase_15 AC 234 ms
63,076 KB
testcase_16 AC 231 ms
62,944 KB
testcase_17 AC 238 ms
63,072 KB
testcase_18 AC 237 ms
62,932 KB
testcase_19 AC 242 ms
62,820 KB
testcase_20 AC 245 ms
63,072 KB
testcase_21 AC 240 ms
63,192 KB
testcase_22 AC 240 ms
62,952 KB
testcase_23 AC 138 ms
58,580 KB
testcase_24 AC 147 ms
58,708 KB
testcase_25 AC 165 ms
58,968 KB
testcase_26 AC 97 ms
44,800 KB
testcase_27 AC 72 ms
34,944 KB
testcase_28 AC 232 ms
62,944 KB
testcase_29 AC 218 ms
62,944 KB
testcase_30 AC 76 ms
37,360 KB
testcase_31 AC 95 ms
199,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (85 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();
    static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w, k) = (c[0], c[1], c[2]);
        var map = NArr(k);
        var ans = 0L;
        var mod = 998_244_353;
        foreach (var tr in map)
        {
            var count = tr[0] * tr[0];
            var left = tr[1] - tr[0];
            var ltri = left < 1 ? ((1 - left) * (0 - left) / 2) : 0;
            var right = tr[1] + tr[0];
            var rtri = right > w ? ((right - w) * (right - w - 1) / 2) : 0;
            ans = (ans + (count - ltri - rtri) % mod * tr[2] % mod) % mod;
        }
        WriteLine(ans);
    }
}
0