結果

問題 No.1338 Giant Class
ユーザー tentententen
提出日時 2021-01-18 09:51:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 994 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 76,548 KB
実行使用メモリ 82,420 KB
最終ジャッジ日時 2024-05-07 23:53:37
合計ジャッジ時間 18,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,996 KB
testcase_01 AC 121 ms
54,144 KB
testcase_02 AC 716 ms
67,396 KB
testcase_03 AC 137 ms
54,000 KB
testcase_04 AC 151 ms
54,576 KB
testcase_05 AC 155 ms
54,372 KB
testcase_06 AC 752 ms
68,152 KB
testcase_07 AC 895 ms
78,224 KB
testcase_08 AC 707 ms
66,940 KB
testcase_09 AC 711 ms
65,808 KB
testcase_10 AC 940 ms
82,420 KB
testcase_11 AC 321 ms
59,076 KB
testcase_12 AC 778 ms
69,768 KB
testcase_13 AC 719 ms
69,548 KB
testcase_14 AC 448 ms
61,600 KB
testcase_15 AC 433 ms
61,004 KB
testcase_16 AC 328 ms
58,888 KB
testcase_17 AC 723 ms
68,444 KB
testcase_18 AC 415 ms
59,500 KB
testcase_19 AC 510 ms
61,504 KB
testcase_20 AC 932 ms
81,796 KB
testcase_21 AC 967 ms
79,536 KB
testcase_22 AC 994 ms
80,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		long ans = (long)h * w;
		HashMap<Integer, Integer> places = new HashMap<>();
		int q = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    int y = sc.nextInt();
		    int x = sc.nextInt();
		    if (places.containsKey(x)) {
		        if (places.get(x) > y) {
		            ans += y - places.get(x);
		            places.put(x, y);
		        }
		    } else {
		        ans += y - h - 1;
		        places.put(x, y);
		    }
		    sb.append(ans).append("\n");
		}
		System.out.print(sb);
	}
}
0