| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1348464 | 2goo_no | Tracks in the Snow (BOI13_tracks) | C++20 | 202 ms | 436 KiB |
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n, m;
cin >> n >> m;
set<char> animals;
for (int i = 0; i < n; i++)
{
string a;
cin >> a;
for (int j = 0; j < m; j++)
{
if (a[j] != '.')
animals.insert(a[j]);
}
}
cout << animals.size();
}| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Result | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
