結果

問題 No.1338 Giant Class
ユーザー chineristACchineristAC
提出日時 2021-01-15 21:31:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,932 KB
最終ジャッジ日時 2024-05-04 22:47:01
合計ジャッジ時間 3,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 95 ms
80,384 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 38 ms
52,992 KB
testcase_06 AC 99 ms
88,704 KB
testcase_07 AC 118 ms
89,984 KB
testcase_08 AC 98 ms
88,832 KB
testcase_09 AC 98 ms
87,680 KB
testcase_10 AC 128 ms
89,984 KB
testcase_11 AC 68 ms
71,680 KB
testcase_12 AC 116 ms
88,704 KB
testcase_13 AC 109 ms
87,808 KB
testcase_14 AC 73 ms
77,952 KB
testcase_15 AC 74 ms
80,768 KB
testcase_16 AC 58 ms
70,400 KB
testcase_17 AC 98 ms
89,344 KB
testcase_18 AC 72 ms
77,952 KB
testcase_19 AC 81 ms
79,872 KB
testcase_20 AC 125 ms
91,668 KB
testcase_21 AC 125 ms
91,932 KB
testcase_22 AC 124 ms
91,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

H,W,Q = map(int,input().split())
min_dic = {}
res = H*W
ans = []
for _  in range(Q):
    y,x = map(int,input().split())
    if x not in min_dic:
        res -= H
        res += y - 1
        min_dic[x] = y
    else:
        if min_dic[x] > y:
            res -= min_dic[x] - 1
            res += y - 1
            min_dic[x] = y
    ans.append(res)

print(*ans,sep="\n")
0