結果

問題 No.1338 Giant Class
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-15 21:47:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,816 KB
最終ジャッジ日時 2024-05-04 23:20:38
合計ジャッジ時間 4,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 107 ms
76,672 KB
testcase_03 AC 41 ms
54,016 KB
testcase_04 AC 43 ms
54,144 KB
testcase_05 AC 43 ms
54,656 KB
testcase_06 AC 102 ms
84,352 KB
testcase_07 AC 118 ms
85,376 KB
testcase_08 AC 102 ms
84,480 KB
testcase_09 AC 105 ms
83,840 KB
testcase_10 AC 126 ms
86,460 KB
testcase_11 AC 65 ms
71,040 KB
testcase_12 AC 118 ms
82,432 KB
testcase_13 AC 100 ms
83,328 KB
testcase_14 AC 73 ms
74,880 KB
testcase_15 AC 84 ms
77,952 KB
testcase_16 AC 68 ms
69,888 KB
testcase_17 AC 102 ms
84,736 KB
testcase_18 AC 81 ms
74,496 KB
testcase_19 AC 83 ms
78,592 KB
testcase_20 AC 125 ms
86,436 KB
testcase_21 AC 125 ms
86,816 KB
testcase_22 AC 121 ms
86,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline

h,w,q = map(int,input().split())
ans = h*w
from collections import defaultdict
d = defaultdict(lambda:h+1)
for i in range(q):
    y, x = map(int, input().split())
    if y <= d[x]:
        ans -= d[x]-y
        d[x] = y
    print(ans)
0