結果
問題 | No.2225 Treasure Searching Rod (Easy) |
ユーザー | kakel-san |
提出日時 | 2023-02-24 21:29:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 88 ms / 2,000 ms |
コード長 | 861 bytes |
コンパイル時間 | 2,358 ms |
コンパイル使用メモリ | 112,524 KB |
実行使用メモリ | 27,216 KB |
最終ジャッジ日時 | 2024-09-13 05:05:48 |
合計ジャッジ時間 | 4,454 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
27,216 KB |
testcase_01 | AC | 31 ms
27,088 KB |
testcase_02 | AC | 32 ms
27,080 KB |
testcase_03 | AC | 30 ms
25,124 KB |
testcase_04 | AC | 33 ms
25,248 KB |
testcase_05 | AC | 32 ms
25,140 KB |
testcase_06 | AC | 32 ms
27,160 KB |
testcase_07 | AC | 88 ms
26,852 KB |
testcase_08 | AC | 87 ms
24,992 KB |
testcase_09 | AC | 86 ms
25,140 KB |
testcase_10 | AC | 34 ms
25,116 KB |
testcase_11 | AC | 31 ms
25,124 KB |
testcase_12 | AC | 87 ms
25,248 KB |
testcase_13 | AC | 87 ms
25,252 KB |
testcase_14 | AC | 87 ms
25,008 KB |
testcase_15 | AC | 31 ms
24,992 KB |
testcase_16 | AC | 31 ms
25,120 KB |
testcase_17 | AC | 32 ms
25,120 KB |
testcase_18 | AC | 32 ms
24,860 KB |
testcase_19 | AC | 32 ms
27,216 KB |
testcase_20 | AC | 31 ms
25,036 KB |
testcase_21 | AC | 42 ms
24,880 KB |
testcase_22 | AC | 32 ms
27,080 KB |
testcase_23 | AC | 42 ms
25,172 KB |
testcase_24 | AC | 34 ms
22,840 KB |
testcase_25 | AC | 34 ms
25,244 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 (h, w, k) = (c[0], c[1], c[2]); var map = NArr(k); var ans = 0L; var mod = 998_244_353; for (var i = 1; i <= h; ++i) for (var j = 1; j <= w; ++j) { foreach (var g in map) { if (g[0] + g[1] >= i + j && g[0] - g[1] >= i - j) ans = (ans + g[2]) % mod; } } WriteLine(ans); } }