結果
問題 | No.11 カードマッチ |
ユーザー | 抹茶アイス |
提出日時 | 2023-07-27 09:46:53 |
言語 | C# (.NET 8.0.203) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,098 bytes |
コンパイル時間 | 11,107 ms |
コンパイル使用メモリ | 166,856 KB |
実行使用メモリ | 564,808 KB |
最終ジャッジ日時 | 2024-10-04 02:32:44 |
合計ジャッジ時間 | 16,513 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
30,208 KB |
testcase_01 | AC | 49 ms
29,952 KB |
testcase_02 | AC | 52 ms
30,208 KB |
testcase_03 | AC | 52 ms
30,080 KB |
testcase_04 | RE | - |
testcase_05 | AC | 56 ms
30,208 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 120 ms
55,336 KB |
testcase_16 | AC | 567 ms
257,628 KB |
testcase_17 | AC | 250 ms
109,568 KB |
testcase_18 | MLE | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /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/
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace yukicoder { public class Program { public static void Main() { var h = int.Parse(Console.ReadLine()); var w = int.Parse(Console.ReadLine()); var n = int.Parse(Console.ReadLine()); var s = new bool[h, w, 2]; long sum = 0; for (var i = 0; i < n; i++){ var a = Console.ReadLine().Split(' ').Select(value => int.Parse(value) - 1).ToArray(); for(var j = 0; j < w; j++) { if (!s[a[0], j, 1]) { s[a[0], j, 0] = true; } } for(var j = 0; j < h; j++) { if (!s[j, a[1], 1]) { s[j, a[1], 0] = true; } } s[a[0], a[1], 1] = true; s[a[0], a[1], 0] = false; } for(var i = 0; i < h; i++) { for(var j = 0; j < w; j++) { if (s[i, j, 0]) { sum++; } } } Console.WriteLine(sum); } } }