結果

問題 No.1338 Giant Class
ユーザー convexineqconvexineq
提出日時 2021-01-15 21:38:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 115,716 KB
最終ジャッジ日時 2024-05-04 22:59:37
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,072 KB
testcase_01 AC 32 ms
51,824 KB
testcase_02 AC 112 ms
112,284 KB
testcase_03 AC 33 ms
53,356 KB
testcase_04 AC 39 ms
53,376 KB
testcase_05 AC 37 ms
54,216 KB
testcase_06 AC 106 ms
100,256 KB
testcase_07 AC 127 ms
109,616 KB
testcase_08 AC 99 ms
100,204 KB
testcase_09 AC 95 ms
97,280 KB
testcase_10 AC 132 ms
113,828 KB
testcase_11 AC 51 ms
71,180 KB
testcase_12 AC 114 ms
101,828 KB
testcase_13 AC 92 ms
98,064 KB
testcase_14 AC 55 ms
77,776 KB
testcase_15 AC 64 ms
84,164 KB
testcase_16 AC 53 ms
69,404 KB
testcase_17 AC 95 ms
98,096 KB
testcase_18 AC 62 ms
76,416 KB
testcase_19 AC 78 ms
88,412 KB
testcase_20 AC 137 ms
115,328 KB
testcase_21 AC 136 ms
115,488 KB
testcase_22 AC 135 ms
115,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,q,*xy = map(int,open(0).read().split())
s = {}
ans = h*w
for i in range(q):
    y,x = xy[i*2]-1,xy[i*2+1]-1
    if x not in s: s[x] = h
    if s[x] > y:
        ans -= s[x]-y
        s[x] = y
    print(ans)
0