結果

問題 No.1338 Giant Class
ユーザー nephrologistnephrologist
提出日時 2021-01-15 23:24:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 87,856 KB
最終ジャッジ日時 2024-05-05 01:59:47
合計ジャッジ時間 4,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,204 KB
testcase_02 AC 99 ms
76,280 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 39 ms
53,120 KB
testcase_06 AC 117 ms
84,480 KB
testcase_07 AC 127 ms
86,152 KB
testcase_08 AC 113 ms
84,864 KB
testcase_09 AC 112 ms
84,836 KB
testcase_10 AC 142 ms
87,248 KB
testcase_11 AC 84 ms
76,860 KB
testcase_12 AC 108 ms
83,712 KB
testcase_13 AC 111 ms
83,604 KB
testcase_14 AC 64 ms
73,088 KB
testcase_15 AC 86 ms
78,848 KB
testcase_16 AC 57 ms
68,608 KB
testcase_17 AC 114 ms
82,816 KB
testcase_18 AC 64 ms
72,760 KB
testcase_19 AC 76 ms
78,592 KB
testcase_20 AC 138 ms
87,856 KB
testcase_21 AC 141 ms
86,852 KB
testcase_22 AC 138 ms
87,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
h, w, q = map(int, input().split())

memo = {}
temp = 0
for _ in range(q):
    y, x = map(int, input().split())
    y -= 1
    x -= 1
    if x in memo:
        pre = memo[x]
        if pre < y:
            print(h * w - temp)
        else:
            memo[x] = y
            temp += pre - y
            print(h * w - temp)
    else:
        memo[x] = y
        temp += h - y
        print(h * w - temp)
0