結果

問題 No.1338 Giant Class
ユーザー roarisroaris
提出日時 2021-05-25 14:41:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 85,380 KB
最終ジャッジ日時 2024-10-14 00:40:12
合計ジャッジ時間 5,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,120 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 118 ms
76,416 KB
testcase_03 AC 47 ms
53,504 KB
testcase_04 AC 48 ms
54,016 KB
testcase_05 AC 49 ms
54,656 KB
testcase_06 AC 127 ms
82,944 KB
testcase_07 AC 150 ms
84,876 KB
testcase_08 AC 126 ms
82,432 KB
testcase_09 AC 124 ms
81,792 KB
testcase_10 AC 159 ms
85,380 KB
testcase_11 AC 77 ms
72,960 KB
testcase_12 AC 140 ms
80,928 KB
testcase_13 AC 119 ms
81,920 KB
testcase_14 AC 88 ms
77,184 KB
testcase_15 AC 93 ms
78,464 KB
testcase_16 AC 76 ms
72,192 KB
testcase_17 AC 122 ms
82,668 KB
testcase_18 AC 88 ms
77,184 KB
testcase_19 AC 96 ms
79,104 KB
testcase_20 AC 156 ms
85,376 KB
testcase_21 AC 154 ms
85,224 KB
testcase_22 AC 156 ms
85,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

H, W, Q = map(int, input().split())
ans = H*W
d = defaultdict(lambda: H+1)

for _ in range(Q):
    Y, X = map(int, input().split())
    
    if Y<d[X]:
        ans -= d[X]-Y
        d[X] = Y
    
    print(ans)
0