結果

問題 No.1338 Giant Class
ユーザー maninimanini
提出日時 2021-01-25 17:16:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 423 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 842,180 KB
最終ジャッジ日時 2024-06-22 09:12:35
合計ジャッジ時間 6,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,732 KB
testcase_01 AC 40 ms
52,616 KB
testcase_02 AC 176 ms
87,608 KB
testcase_03 AC 38 ms
53,272 KB
testcase_04 AC 42 ms
54,072 KB
testcase_05 AC 47 ms
61,416 KB
testcase_06 AC 176 ms
152,640 KB
testcase_07 AC 205 ms
155,908 KB
testcase_08 AC 154 ms
105,528 KB
testcase_09 AC 142 ms
88,932 KB
testcase_10 AC 204 ms
109,648 KB
testcase_11 AC 114 ms
138,604 KB
testcase_12 AC 168 ms
85,052 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

H, W, Q = list(map(int, input().split()))     # スペース区切り連続数字
YX = [list(map(int, input().split())) for _ in range(Q)]     # スペース区切り連続数字(行列)

res = H * W
zan = [H] * W

for y, x in YX:
    t = y - 1
    if zan[x-1] > t:
        d = zan[x-1] - t
        zan[x-1] = t
        res -= d

    print("{}".format(res))
0