結果

問題 No.1338 Giant Class
ユーザー kakel-sankakel-san
提出日時 2024-08-17 01:50:02
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 1,180 bytes
コンパイル時間 7,828 ms
コンパイル使用メモリ 166,316 KB
実行使用メモリ 234,524 KB
最終ジャッジ日時 2024-08-17 01:50:16
合計ジャッジ時間 12,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
31,232 KB
testcase_01 AC 58 ms
31,200 KB
testcase_02 AC 145 ms
67,216 KB
testcase_03 AC 62 ms
31,360 KB
testcase_04 AC 57 ms
31,192 KB
testcase_05 AC 60 ms
31,356 KB
testcase_06 AC 133 ms
58,952 KB
testcase_07 AC 165 ms
74,140 KB
testcase_08 AC 130 ms
57,216 KB
testcase_09 AC 126 ms
55,936 KB
testcase_10 AC 177 ms
78,608 KB
testcase_11 AC 68 ms
35,320 KB
testcase_12 AC 156 ms
60,436 KB
testcase_13 AC 132 ms
62,032 KB
testcase_14 AC 75 ms
39,040 KB
testcase_15 AC 85 ms
41,828 KB
testcase_16 AC 66 ms
34,816 KB
testcase_17 AC 132 ms
62,140 KB
testcase_18 AC 74 ms
38,784 KB
testcase_19 AC 87 ms
43,136 KB
testcase_20 AC 186 ms
79,060 KB
testcase_21 AC 200 ms
79,192 KB
testcase_22 AC 191 ms
234,524 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 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 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, q) = (c[0], c[1], c[2]);
        var map = NArr(q);
        var dic = new Dictionary<int, int>();
        var ans = new List<long>(q);
        var count = (long)h * w;
        foreach (var man in map)
        {
            if (dic.ContainsKey(man[1] - 1))
            {
                if (man[0] < dic[man[1] - 1])
                {
                    count -= dic[man[1] - 1] - man[0];
                    dic[man[1] - 1] = man[0];
                }
            }
            else
            {
                count -= h - man[0] + 1;
                dic[man[1] - 1] = man[0];
            }
            ans.Add(count);
        }
        WriteLine(string.Join("\n", ans));
    }
}
0