結果

問題 No.1338 Giant Class
ユーザー ks2mks2m
提出日時 2021-01-15 21:43:48
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 819 bytes
コンパイル時間 5,661 ms
コンパイル使用メモリ 77,808 KB
実行使用メモリ 442,376 KB
最終ジャッジ日時 2024-05-04 23:13:26
合計ジャッジ時間 9,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,708 KB
testcase_01 AC 54 ms
36,836 KB
testcase_02 AC 384 ms
46,768 KB
testcase_03 AC 59 ms
37,272 KB
testcase_04 AC 61 ms
37,220 KB
testcase_05 AC 72 ms
37,836 KB
testcase_06 AC 345 ms
81,092 KB
testcase_07 AC 421 ms
81,596 KB
testcase_08 AC 329 ms
57,424 KB
testcase_09 AC 321 ms
49,176 KB
testcase_10 AC 432 ms
58,012 KB
testcase_11 AC 188 ms
74,452 KB
testcase_12 AC 348 ms
46,560 KB
testcase_13 RE -
testcase_14 AC 621 ms
442,376 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Arrays;

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]);
		int[] a = new int[w];
		Arrays.fill(a, h);

		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;
			if (y < a[x]) {
				int d = a[x] - y;
				a[x] = y;
				ans -= d;
			}
			pw.println(ans);
		}
		pw.flush();
		br.close();
	}
}
0