結果

問題 No.1338 Giant Class
ユーザー bluemeganebluemegane
提出日時 2021-01-16 09:05:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 103,808 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-11-27 08:39:34
合計ジャッジ時間 10,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,048 KB
testcase_01 AC 24 ms
18,048 KB
testcase_02 AC 585 ms
22,272 KB
testcase_03 AC 26 ms
18,048 KB
testcase_04 AC 26 ms
18,048 KB
testcase_05 AC 26 ms
17,920 KB
testcase_06 AC 396 ms
23,936 KB
testcase_07 AC 569 ms
26,240 KB
testcase_08 AC 375 ms
23,936 KB
testcase_09 AC 346 ms
23,936 KB
testcase_10 AC 615 ms
26,368 KB
testcase_11 AC 85 ms
20,116 KB
testcase_12 AC 453 ms
23,680 KB
testcase_13 AC 359 ms
23,936 KB
testcase_14 AC 122 ms
22,016 KB
testcase_15 AC 163 ms
22,784 KB
testcase_16 AC 73 ms
20,208 KB
testcase_17 AC 371 ms
23,936 KB
testcase_18 AC 117 ms
21,840 KB
testcase_19 AC 191 ms
22,912 KB
testcase_20 AC 624 ms
26,368 KB
testcase_21 AC 634 ms
26,496 KB
testcase_22 AC 636 ms
26,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    public static long h, w;
    public static int q;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        h = long.Parse(line[0]);
        w = long.Parse(line[1]);
        q = int.Parse(line[2]);
        getAns();
    }
    static void getAns()
    {
        var ans = h * w;
        var dw = new Dictionary<int, int>();
        for (int i = 0; i < q; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var x = int.Parse(line[0]) - 1;
            var y = int.Parse(line[1]) - 1;
            if (dw.ContainsKey(y))
            {
                if (x < dw[y]) { ans -= dw[y] - x; dw[y] = x; }
            }
            else { ans -= h - x; dw[y] = x; }
            Console.WriteLine(ans);
        }
    }
}
0