結果

問題 No.1338 Giant Class
ユーザー ks2mks2m
提出日時 2021-01-15 21:47:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 54,696 KB
最終ジャッジ日時 2024-05-04 23:21:02
合計ジャッジ時間 9,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,292 KB
testcase_01 AC 45 ms
37,000 KB
testcase_02 AC 353 ms
45,948 KB
testcase_03 AC 48 ms
37,104 KB
testcase_04 AC 50 ms
37,192 KB
testcase_05 AC 71 ms
37,956 KB
testcase_06 AC 321 ms
50,528 KB
testcase_07 AC 418 ms
52,604 KB
testcase_08 AC 339 ms
50,500 KB
testcase_09 AC 304 ms
49,468 KB
testcase_10 AC 437 ms
53,340 KB
testcase_11 AC 167 ms
44,344 KB
testcase_12 AC 372 ms
49,968 KB
testcase_13 AC 335 ms
50,336 KB
testcase_14 AC 191 ms
44,248 KB
testcase_15 AC 222 ms
45,880 KB
testcase_16 AC 181 ms
44,344 KB
testcase_17 AC 329 ms
50,564 KB
testcase_18 AC 193 ms
44,660 KB
testcase_19 AC 235 ms
46,612 KB
testcase_20 AC 466 ms
53,968 KB
testcase_21 AC 447 ms
54,696 KB
testcase_22 AC 465 ms
53,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Map;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int h = Integer.parseInt(sa[0]);
		int w = Integer.parseInt(sa[1]);
		int q = Integer.parseInt(sa[2]);
		Map<Integer, Integer> map = new HashMap<>();

		long ans = (long) h * w;
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			sa = br.readLine().split(" ");
			int y = Integer.parseInt(sa[0]) - 1;
			int x = Integer.parseInt(sa[1]) - 1;
			int c = map.getOrDefault(x, h);
			if (y < c) {
				int d = c - y;
				map.put(x, y);
				ans -= d;
			}
			pw.println(ans);
		}
		pw.flush();
		br.close();
	}
}
0