結果

問題 No.1338 Giant Class
ユーザー O2MTO2MT
提出日時 2021-01-23 17:09:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 91,636 KB
最終ジャッジ日時 2024-06-10 00:52:14
合計ジャッジ時間 8,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,528 KB
testcase_01 AC 36 ms
52,536 KB
testcase_02 AC 511 ms
79,396 KB
testcase_03 AC 37 ms
53,148 KB
testcase_04 AC 41 ms
53,752 KB
testcase_05 AC 51 ms
61,624 KB
testcase_06 AC 318 ms
87,988 KB
testcase_07 AC 323 ms
87,484 KB
testcase_08 AC 225 ms
85,852 KB
testcase_09 AC 218 ms
84,556 KB
testcase_10 AC 342 ms
91,636 KB
testcase_11 AC 136 ms
78,024 KB
testcase_12 AC 309 ms
85,184 KB
testcase_13 AC 291 ms
85,460 KB
testcase_14 AC 104 ms
78,032 KB
testcase_15 AC 157 ms
79,524 KB
testcase_16 AC 84 ms
76,728 KB
testcase_17 AC 247 ms
85,268 KB
testcase_18 AC 100 ms
77,536 KB
testcase_19 AC 133 ms
81,320 KB
testcase_20 AC 370 ms
89,780 KB
testcase_21 AC 423 ms
90,144 KB
testcase_22 AC 364 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,Q = map(int,input().split())
room = {}
count = H*W
for _ in range(Q):
    y,x = map(int,input().split())
    if x not in room:
        room[x] = [y]
        count -= H-y+1
    else:
        min_room = min(room[x])
        if y < min_room:
            count -= min_room-y
        room[x].append(y)
    print(count)
0