結果
問題 | No.11 カードマッチ |
ユーザー | lioo |
提出日時 | 2021-04-13 23:02:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 618 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 64,280 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 01:51:58 |
合計ジャッジ時間 | 1,196 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 4 ms
6,944 KB |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 4 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 4 ms
6,940 KB |
testcase_14 | AC | 4 ms
6,940 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 3 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,940 KB |
testcase_18 | AC | 4 ms
6,940 KB |
ソースコード
#include <iostream> using namespace std; int main(){ bool existw[1000001]={}; bool existh[1000001]={}; int W; int H; int N; cin>>W>>H>>N; for(int i=0;i<N;i++){ int s,k; cin>>s>>k; existw[s]=existh[k]=true; } long long int wcount=0; long long int hcount=0; for(int i=1;i<=W;i++){ if (existw[i]){ wcount++; } } for(int j=1;j<=H;j++){ if (existh[j]){ hcount++; } } long long int ans; ans = wcount*H+hcount*W; ans -= wcount*hcount; ans -= N; cout<<ans<<endl; }