結果

問題 No.1338 Giant Class
ユーザー r_ishidar_ishida
提出日時 2021-01-16 09:25:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 253 ms
10,880 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 188 ms
17,340 KB
testcase_07 AC 264 ms
23,808 KB
testcase_08 AC 179 ms
17,340 KB
testcase_09 AC 171 ms
17,468 KB
testcase_10 AC 285 ms
23,820 KB
testcase_11 AC 50 ms
11,648 KB
testcase_12 AC 214 ms
17,332 KB
testcase_13 AC 176 ms
17,196 KB
testcase_14 AC 67 ms
12,364 KB
testcase_15 AC 88 ms
14,140 KB
testcase_16 AC 48 ms
11,520 KB
testcase_17 AC 174 ms
17,452 KB
testcase_18 AC 66 ms
12,160 KB
testcase_19 AC 97 ms
13,892 KB
testcase_20 AC 289 ms
23,864 KB
testcase_21 AC 292 ms
23,936 KB
testcase_22 AC 292 ms
23,940 KB
権限があれば一括ダウンロードができます

ソースコード

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