結果

問題 No.11 カードマッチ
ユーザー cureskolcureskol
提出日時 2020-03-23 23:54:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 271 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 170,736 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-29 17:20:43
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

signed main(){
  int w,h,n;cin>>w>>h>>n;
  set<int> s,t;
  for(int i=0;i<n;i++){
    int a,b;cin>>a>>b;
    s.insert(a);
    t.insert(b);
  }
  cout<<s.size()*h+t.size()*w-s.size()*t.size()-n<<endl;
}
0