제출 #1313777

#제출 시각아이디문제언어결과실행 시간메모리
1313777NipphitchTracks in the Snow (BOI13_tracks)C++20
2.19 / 100
174 ms444 KiB
#include <bits/stdc++.h> using namespace std; int n,m; set <char> s; signed main() { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> m; for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ char c; cin >> c; s.insert(c); } } s.erase('.'); cout << s.size(); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...