結果

問題 No.1338 Giant Class
ユーザー umezoumezo
提出日時 2021-01-15 22:25:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 399 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 203,332 KB
実行使用メモリ 814,524 KB
最終ジャッジ日時 2024-11-26 16:10:06
合計ジャッジ時間 9,552 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 169 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 162 ms
72,704 KB
testcase_07 AC 221 ms
72,960 KB
testcase_08 AC 130 ms
25,548 KB
testcase_09 AC 107 ms
9,912 KB
testcase_10 AC 203 ms
26,112 KB
testcase_11 AC 45 ms
64,240 KB
testcase_12 AC 132 ms
5,248 KB
testcase_13 RE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

int main(){
  ll h,w,q;
  cin>>h>>w>>q;
  
  vector<ll> A(w);
  rep(i,w) A[i]=h;
  
  ll ans=h*w;
  rep(i,q){
    ll y,x;
    cin>>y>>x;
    y--,x--;
    
    if(A[x]>y){
      ans-=A[x]-y;
      A[x]=y;
    }
    cout<<ans<<endl;
  }
  
  return 0;
}
0