結果
| 問題 |
No.1338 Giant Class
|
| コンテスト | |
| ユーザー |
cuptea11139999
|
| 提出日時 | 2021-06-08 22:57:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 383 ms / 2,000 ms |
| コード長 | 247 bytes |
| コンパイル時間 | 278 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 87,912 KB |
| 最終ジャッジ日時 | 2024-11-27 06:08:43 |
| 合計ジャッジ時間 | 7,870 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 21 |
ソースコード
from collections import defaultdict
h,w,q= list(map(int,input().split()))
d = defaultdict(lambda:h)
seat = h*w
for i in range(q):
y,x= list(map(int,input().split()))
if d[x] >= y:
seat -= d[x]-y+1
d[x] = y-1
print(seat)
cuptea11139999