結果

問題 No.1338 Giant Class
ユーザー ygd.ygd.
提出日時 2021-01-15 21:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,584 KB
最終ジャッジ日時 2024-05-04 23:17:09
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 267 ms
76,416 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 38 ms
53,120 KB
testcase_05 AC 44 ms
59,264 KB
testcase_06 AC 221 ms
82,856 KB
testcase_07 AC 294 ms
85,584 KB
testcase_08 AC 229 ms
82,728 KB
testcase_09 AC 202 ms
82,832 KB
testcase_10 AC 388 ms
85,036 KB
testcase_11 AC 99 ms
76,492 KB
testcase_12 AC 243 ms
81,024 KB
testcase_13 AC 214 ms
82,768 KB
testcase_14 AC 109 ms
77,360 KB
testcase_15 AC 128 ms
78,592 KB
testcase_16 AC 92 ms
76,032 KB
testcase_17 AC 221 ms
82,560 KB
testcase_18 AC 121 ms
77,332 KB
testcase_19 AC 163 ms
79,192 KB
testcase_20 AC 370 ms
85,480 KB
testcase_21 AC 314 ms
85,356 KB
testcase_22 AC 307 ms
85,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,Q = map(int,input().split())
dic = {}
ans = H*W
for i in range(Q):
    y,x = map(int,input().split())
    if x not in dic:
        dic[x] = y
        dame = H + 1 - y
    else:
        if y > dic[x]:
            dame = 0
        else:
            dame = dic[x] - y
            dic[x] = min(dic[x],y)
    ans -= dame
    print(ans)
0