結果
| 問題 | No.1338 Giant Class |
| コンテスト | |
| ユーザー |
nephrologist
|
| 提出日時 | 2021-01-15 22:10:40 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 284 bytes |
| 記録 | |
| コンパイル時間 | 1,029 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 1,311,580 KB |
| 最終ジャッジ日時 | 2026-05-21 01:45:52 |
| 合計ジャッジ時間 | 9,262 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 RE * 1 MLE * 3 -- * 6 |
ソースコード
h, w, q = map(int, input().split())
memo = [h] * w
temp = 0
for _ in range(q):
y, x = map(int, input().split())
y -= 1
x -= 1
pre = memo[x]
if pre < y:
print(h * w - temp)
else:
memo[x] = y
temp += pre - y
print(h * w - temp)
nephrologist