結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー mobchanmobchan
提出日時 2023-04-28 01:27:01
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 1,459 bytes
コンパイル時間 14,254 ms
コンパイル使用メモリ 166,928 KB
実行使用メモリ 185,104 KB
最終ジャッジ日時 2024-11-17 04:50:24
合計ジャッジ時間 20,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
30,332 KB
testcase_01 AC 62 ms
30,324 KB
testcase_02 AC 62 ms
30,336 KB
testcase_03 AC 60 ms
30,080 KB
testcase_04 AC 61 ms
30,336 KB
testcase_05 AC 61 ms
30,336 KB
testcase_06 AC 62 ms
30,336 KB
testcase_07 AC 439 ms
32,128 KB
testcase_08 AC 438 ms
32,256 KB
testcase_09 AC 437 ms
32,000 KB
testcase_10 AC 436 ms
31,104 KB
testcase_11 AC 442 ms
31,232 KB
testcase_12 AC 443 ms
32,232 KB
testcase_13 AC 440 ms
32,128 KB
testcase_14 AC 437 ms
32,128 KB
testcase_15 AC 436 ms
31,360 KB
testcase_16 AC 434 ms
31,360 KB
testcase_17 AC 434 ms
31,360 KB
testcase_18 AC 433 ms
30,848 KB
testcase_19 AC 436 ms
31,232 KB
testcase_20 AC 440 ms
31,360 KB
testcase_21 AC 181 ms
31,616 KB
testcase_22 AC 63 ms
30,080 KB
testcase_23 AC 169 ms
31,616 KB
testcase_24 AC 248 ms
31,360 KB
testcase_25 AC 104 ms
185,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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 System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var input = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var H = input[0];
        var W = input[1];
        var K = (long)input[2];
        var sum = 0L;
        var treasure = new Dictionary<(int, int), long>();

        for (int i = 0; i < K; i++)
        {
            var temp = Console.ReadLine().Split().Select(int.Parse).ToArray();
            temp[0]--;
            temp[1]--;
            treasure.Add((temp[0], temp[1]), temp[2]);
        }

        var dic = new Dictionary<(int, int), int>();

        for (int i = 0; i < H; i++)
        {
            for (int j = 0; j < W; j++)
            {
                for (int x = i; x < H; x++)
                {
                    for (int y = j - (H - i) < 0 ? 0 : j - (H - i); y < (j + (H - i) > W - 1 ? W : j + (H - i)); y++)
                    {
                        if ((x + y >= i + j) && (x - y >= i - j))
                        {
                            if (dic.ContainsKey((x, y))) dic[(x, y)]++;
                            else dic.Add((x, y), 1);
                        }
                    }
                }
            }
        }

        foreach (var item in treasure)
        {
            if (dic.ContainsKey(item.Key)) sum += dic[item.Key] * item.Value;
        }

        Console.WriteLine(sum % 998244353);
    }
}
0