Submission #543104

#TimeUsernameProblemLanguageResultExecution timeMemory
543104ktkeremEmacs (COCI20_emacs)C++17
50 / 50
1 ms340 KiB
#include<bits/stdc++.h> using namespace std; /*#include <bits/extc++.h> using namespace __gnu_pbds; template<class T> using oset = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>; /**/ typedef long long ll; typedef unsigned long long ull; typedef __int128 vll; typedef unsigned __int128 uvll; ll _i=0; #define ffn(x) _i=x #define llll pair<ll , ll> #define stitr set<ll>::iterator #define fora(y,x) for(ll y=_i;x>y;y++) #define pb push_back #define pf push_front #define halo cout << "hello\n" #define fi first #define sec second #define all(a) a.begin() , a.end() const ll limit = 1e18; const ll ous = 2e5+5; const ll dx[4] = {0 , -1 , 1 , 0} , dy[4] = {1,0,0,-1}; void solve(){ ll n , m;cin >> n >> m; char s[n+5][m+5]; memset(s , '.' , sizeof(s)); fora(i , n){ cin >> (s[i+1] + 1); } ll ans = 0; for(ll i = 1;n>=i;i++){ for(ll j = 1;m>=j;j++){ if(s[i][j] == '*' && s[i-1][j] == '.' && s[i][j-1] == '.'){ ans++; } } } cout << ans << "\n"; } signed main(){ ios_base::sync_with_stdio(false);cin.tie(NULL); ll t=1; //cin >> t; ll o = 1; while(t--){ //cout << "Case " << o++ << ":\n"; solve(); } return 0; }

Compilation message (stderr)

emacs.cpp:7:1: warning: "/*" within comment [-Wcomment]
    7 | /**/
      |  
emacs.cpp: In function 'int main()':
emacs.cpp:47:8: warning: unused variable 'o' [-Wunused-variable]
   47 |     ll o = 1;
      |        ^
#Verdict Execution timeMemoryGrader output
Fetching results...