結果
問題 | No.11 カードマッチ |
ユーザー | Dadarithm |
提出日時 | 2015-10-04 23:06:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 630 ms |
コンパイル使用メモリ | 66,156 KB |
実行使用メモリ | 817,792 KB |
最終ジャッジ日時 | 2024-07-19 19:35:44 |
合計ジャッジ時間 | 3,141 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include <iostream> #include <vector> using namespace std; typedef long long ll; int main() { int W, H, N; vector<vector<bool>> card; cin >> W >> H >> N; card.resize(W); for (int i = 0; i < W; ++i) card[i].assign(H, false); for (int i = 0; i < N; ++i) { int s, k; cin >> s >> k; for (int i = 0; i < W; ++i) card[i][k - 1] = true; for (int i = 0; i < H; ++i) card[s - 1][i] = true; } ll ans = -N; for (int i = 0; i < W; ++i) { for (int j = 0; j < H; ++j) { if (card[i][j]) ++ans; } } cout << ans << endl; return 0; }