| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 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();
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
