結果

問題 No.1338 Giant Class
ユーザー さかぽんさかぽん
提出日時 2021-02-19 11:46:24
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 3,494 ms
コンパイル使用メモリ 107,008 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-09-15 20:50:21
合計ジャッジ時間 7,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,048 KB
testcase_01 AC 28 ms
17,792 KB
testcase_02 AC 168 ms
22,400 KB
testcase_03 AC 28 ms
18,176 KB
testcase_04 AC 28 ms
18,048 KB
testcase_05 AC 28 ms
18,048 KB
testcase_06 AC 133 ms
24,448 KB
testcase_07 AC 178 ms
26,880 KB
testcase_08 AC 125 ms
24,448 KB
testcase_09 AC 117 ms
24,320 KB
testcase_10 AC 189 ms
27,264 KB
testcase_11 AC 46 ms
21,888 KB
testcase_12 AC 140 ms
24,576 KB
testcase_13 AC 127 ms
24,320 KB
testcase_14 AC 56 ms
22,048 KB
testcase_15 AC 69 ms
22,912 KB
testcase_16 AC 43 ms
21,084 KB
testcase_17 AC 129 ms
24,320 KB
testcase_18 AC 56 ms
22,048 KB
testcase_19 AC 76 ms
22,912 KB
testcase_20 AC 199 ms
27,264 KB
testcase_21 AC 201 ms
27,264 KB
testcase_22 AC 201 ms
27,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

class D
{
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static (int, int) Read2() { var a = Read(); return (a[0], a[1]); }
	static (int, int, int) Read3() { var a = Read(); return (a[0], a[1], a[2]); }
	static void Main()
	{
		Console.SetOut(new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
		var (h, w, qc) = Read3();
		var qs = Array.ConvertAll(new bool[qc], _ => Read2());

		var r = (long)h * w;
		var map = new Map<int, int>(h + 1);

		foreach (var (y, x) in qs)
		{
			var t = map[x];
			if (t > y)
			{
				r -= t - y;
				map[x] = y;
			}
			Console.WriteLine(r);
		}
		Console.Out.Flush();
	}
}

class Map<TK, TV> : Dictionary<TK, TV>
{
	TV _v0;
	public Map(TV v0 = default(TV)) { _v0 = v0; }

	public new TV this[TK key]
	{
		get { return ContainsKey(key) ? base[key] : _v0; }
		set { base[key] = value; }
	}
}
0