Sponsors

Admin

977 animes navigated

NASCAR Trial Intensifies As Jim France And Richard Childress Testify

NASCAR Trial Heats Up as Jim France and Richard Childress Face the Court The high-stakes...

Google previews upcoming Android XR smart glasses equipped with Gemini

Google Unveils Android XR Smart Glasses Powered by Gemini AI Google LLC is pulling back...

Who has the most liquid cash?

The Cash Kings: Who Holds the World's Most Liquid Assets? In the high-stakes world of...

Los Angeles partners kick off “Grow the Game of Soccer” free clinic series aimed at empowering youth sports

Los Angeles Kicks Off Major Initiative to 'Grow the Game of Soccer' Ahead of...

Codeforces Round #425 (Div....

#include<bits/stdc++.h> #define oo 0x3f3f3f3f #define cl(x) memset(x, 0, sizeof(x)) #define mp make_pair #define...

Codeforces Round #425 (Div....

#include<cstdio> #include<iostream> using namespace std; struct Edge{ int to,next; }e; int head,cnt=0; void add(int u,int v) { cnt++; e.to=v; e.next=head; head=cnt; } int...

Codeforces Round #425 (Div....

#include <bits/stdc++.h> using namespace std; using ll = long long; using ld...

Codeforces Round #425 (Div....

#include<iostream> #include<cstdio> #include<cstring> using namespace std; string s,t; int q; string str; int w; bool g; int main() { cin>>s; for(int...

Codeforces Round #425 (Div....

#include <cstdio> int main() { long long n, k; scanf("%I64d%I64d", &n, &k); puts((n...

Codeforces Round #423 (Div....

import java.io.*; import java.util.*; import sun.security.pkcs11.Secmod.DbMode; public class F { static class Edge...

Codeforces Round #423 (Div....

#include<bits/stdc++.h> #define pi acos(-1) #define maxn 1148576 using namespace std; typedef long long...

Codeforces Round #423 (Div....

#include <iostream> #include <algorithm> #include <cmath> #include <cstring> #include <cstdlib> #include <cstdio> #include <map> #include <ctime> #include...

Codeforces Round #423 (Div....

#include<iostream> #include<cstring> #include<cstdio> using namespace std; int getnum(char c){ switch(c){ case 'A':return 0; case 'T':return 1; case...

Codeforces Round #423 (Div....

#include <cstdio> int main(){ int n, k; scanf("%d%d", &n, &k); int l =...

Codeforces Round #423 (Div....

#include<bits/stdc++.h> using namespace std; const int maxn=2e6+5; int main() { char a={}; int n,k,i; cin>>n; while(n--){ string x; cin>>x>>k; int...

Codeforces Round #423 (Div....

#include <bits/stdc++.h> using namespace std; int n,m,maxx,minx=1e9,maxy,miny=1e9,T; char a; int main(){ scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) for(int j=1;j<=m;j++){ cin>>a; if(a=='B')T++,maxx=max(maxx,i),minx=min(minx,i),maxy=max(maxy,j),miny=min(miny,j); } if(!T)puts("1"); else{ int...