結果
問題 | No.11 カードマッチ |
ユーザー | youjo_yamioti |
提出日時 | 2018-12-02 10:40:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 638 bytes |
コンパイル時間 | 1,273 ms |
コンパイル使用メモリ | 161,536 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 13:01:06 |
合計ジャッジ時間 | 3,871 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int counter(vector<int> vec,int n){ int i = 0; int c = 0; int l = vec.size(); for(i=0;i<l;i++){ if(vec[i] == n) c++; } return c; } int main(){ int W,H,N; int sum = 0; cin >> W >> H >> N; vector<int> S(N+1,0); vector<int> K(N+1,0); for(int i=1;i<=N;i++){ cin >> S[i]; cin >> K[i]; } for(int i=1;i<=W;i++){ int c1 = counter(S,i); if(c1 != 0) sum += H-c1; } for(int i=1;i<=H;i++){ int c2 = counter(K,i); if(c2 != 0) sum += W-c2; } cout << sum << endl; return 0; }