結果

問題 No.2225 Treasure Searching Rod (Easy)
ユーザー mobchanmobchan
提出日時 2023-04-28 00:35:05
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 1,230 bytes
コンパイル時間 8,560 ms
コンパイル使用メモリ 166,932 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-04-28 12:43:16
合計ジャッジ時間 12,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
33,664 KB
testcase_01 AC 46 ms
35,456 KB
testcase_02 AC 45 ms
29,952 KB
testcase_03 AC 47 ms
30,336 KB
testcase_04 AC 47 ms
29,952 KB
testcase_05 AC 48 ms
30,324 KB
testcase_06 AC 48 ms
30,460 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (84 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 int[K][];

        for (int i = 0; i < K; i++)
        {
            treasure[i] = Console.ReadLine().Split().Select(int.Parse).ToArray();
        }

        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))
                        {
                            foreach (var item in treasure)
                            {
                                if (item[0] == x + 1 && item[1] == y + 1) sum += item[2];
                            }
                        }
                    }
                }
            }
        }
        Console.WriteLine(sum % 998244353);
    }
}
0