結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 99 ms
76,288 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 125 ms
84,096 KB
testcase_07 AC 134 ms
86,032 KB
testcase_08 AC 116 ms
84,772 KB
testcase_09 AC 115 ms
84,736 KB
testcase_10 AC 151 ms
87,376 KB
testcase_11 AC 86 ms
76,800 KB
testcase_12 AC 116 ms
83,712 KB
testcase_13 AC 118 ms
83,616 KB
testcase_14 AC 63 ms
72,960 KB
testcase_15 AC 86 ms
78,712 KB
testcase_16 AC 59 ms
67,968 KB
testcase_17 AC 118 ms
82,988 KB
testcase_18 AC 63 ms
72,912 KB
testcase_19 AC 75 ms
78,752 KB
testcase_20 AC 150 ms
87,720 KB
testcase_21 AC 150 ms
86,824 KB
testcase_22 AC 145 ms
87,056 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