Submission #544163

#TimeUsernameProblemLanguageResultExecution timeMemory
544163AlperenTEmacs (COCI20_emacs)C++17
50 / 50
1 ms340 KiB
#include <bits/stdc++.h> using namespace std; const int N = 100 + 5; int n, m, ans; char arr[N][N]; int main(){ ios_base::sync_with_stdio(false);cin.tie(NULL); cin >> n >> m; for(int i = 1; i <= n; i++){ for(int j = 1; j <= m; j++){ cin >> arr[i][j]; } } for(int i = 1; i <= n; i++){ for(int j = 1; j <= m; j++){ if(arr[i][j] == '*' && arr[i - 1][j] != '*' && arr[i][j - 1] != '*') ans++; } } cout << ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...