結果

問題 No.1338 Giant Class
ユーザー r_ishida
提出日時 2021-01-16 09:25:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 23,940 KB
最終ジャッジ日時 2024-11-27 09:07:41
合計ジャッジ時間 5,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools
import math
def S(): return sys.stdin.readline().rstrip()
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LS(): return list(sys.stdin.readline().rstrip().split())

h,w,q = MI()
d = {}

ans = h*w
for i in range(q):
    y,x = MI()
    if x-1 in d:
        if d[x-1] > y-1:
            ans -= d[x-1] - y + 1
            d[x-1] = y - 1
    else:
        d[x-1] = y-1
        ans -= h-d[x-1]
    print(ans)
0