#include <bits/stdc++.h>
#pragma GCC optimize("O3, unroll-loops")
#pragma GCC target("avx2")
// #define int long long
using namespace std;
#define _upgrade \
ios_base::sync_with_stdio(0); \
cin.tie(0); \
cout.tie(0);
#define FOR(i, a, b) for (int i = a; i <= b; i++)
#define FORB(i, a, b) for (int i = a; i >= b; i--)
#define REP(i, a) for (int i = 0; i < a; i++)
#define REP1(i, a) for (int i = 1; i < a; i++)
#define REPB(i, a) for (int i = a - 1; i >= 0; i--)
#define TRAV(a,x) for (auto& a: x)
#define LINE "---------------------\n"
#define ALL(A) A.begin(), A.end()
#define LLA(A) A.rbegin(), A.rend()
#define Q queue
#define ff first
#define ss second
#define ts to_string
#define pb push_back
#define mp make_pair
#define lb lower_bound
#define ub upper_bound
#define sz(x) (int)x.size()
using ll = long long;
using db = double;
using ld = long double;
using uint = unsigned;
// PQ going up <int, VI, greater<int> >
using VI = vector<int>;
using VS = vector<string>;
using VB = vector<bool>;
using VVB = vector<VB>;
using VVVB = vector<VVB>;
using VLL = vector<ll>;
using VVLL = vector<VLL>;
using VD = vector<db>;
using PII = pair<int, int>;
using PLL = pair<ll, ll>;
using VPI = vector<PII>;
using VVPI = vector<VPI>;
using VVI = vector<VI>;
using VVVI = vector<VVI>;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
void eraseDups(VI& a) {
a.erase(unique(a.begin(), a.end()), a.end());
}
int strToInt(string&a) {
stringstream x(a);
int b;
x >> b;
return b;
}
int bitCnt(int a) {
bitset <64> b(a);
return b.count();
}
int bitCnt(string a) {
bitset <64> b(a);
return b.count();
}
int gcd(int a, int b) {
if (b == 0) return a;
return gcd(b, a % b);
}
void print(VI& a) {
for (auto el : a) {
cout << el << ' ';
}
cout << '\n';
}
void print(VPI& a) {
for (auto el : a) {
cout << el.ff << ',' << el.ss << ' ';
}
cout << '\n';
}
void print(VI& a, int n) {
int cnt = 0;
for (auto el : a) {
if (cnt++ == n) break;
cout << el << ' ';
}
cout << '\n';
}
void print(VVI& a) {
for (auto el : a) {
print(el);
}
}
/*
| _
| __ _ | |
| | \| | ___ ___ | |_
| | |\ | |/ _ \/ __/| __|
| | | \ | __/\__ \| |_
| |_| \_|\___ /___/ \__|
| _ _ _
| (_) | | | |
| _ __ _ __ ___ __ _ _ __ __ _ _ __ ___ _ __ ___ _ ___ ___| |_| |_
| | '_ \| '__/ _ \ / _` | '__/ _` | '_ ` _ \| '_ ` _ \| / __/ __| __| __|
| | |_) | | | (_) | (_| | | | (_| | | | | | | | | | | | \__ \__ \ |_| |_
| | .__/|_| \___/ \__, |_| \__,_|_| |_| |_|_| |_| |_|_|___/___/\__|\__|
| | | __/ |
| |_| |___/ _
| _ (_)
| _ __ ___ __ _ ____ __ _ __ _| | __ _ _
| | '_ ` _ \ / _` |_ / _` |/ _` | |/ _` | |
| | | | | | | (_| / / (_| | (_| | | (_| | |
| |_| |_| |_|\__,_|____\__,_|\__,_|_|\__,_|_|
*/
const db PI = acos(-1.0); //M_PI;
const ll INFF = 4e18;
const int INF = 1.07e9;
const int MOD = 1e9 + 7;
const int MOD1 = 998244353; //7*19*2^23 +1;
const int dx[] = {-1, 0, 1, 0};
const int dy[] = {0, 1, 0, -1};
const int N = 5e5 + 5;
const int M = 2e5 + 5;
int nums[N];
int n, m, k, q, r;
string s[N];
void go () {
cin >> n >> m >> r >> k;
int sum[n+5][m+5];
memset(sum, 0, sizeof(sum));
for (int i = 1; i <= n; i++) {
cin >> s[i];
s[i] = "."+s[i];
for (int j = 1; j <= m; j++) {
if (s[i][j] == 'S') { // splinker
int x1 = max(1, i - r+1);
int y1 = max(1, j - r+1);
int x2 = min(n, i + r+1);
int y2 = min(m, j + r+1);
sum[x1][y1]++;
sum[x1][y2+1]--;
sum[x2][y1+1]--;
sum[x2][y2]++;
}
}
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
sum[i][j] += sum[i][j-1];
}
for (int j = 1; j <= m; j++) {
sum[i][j] += sum[i-1][j];
}
}
int ans = 0;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++) {
ans += (s[i][j] == 'M' && sum[i][j]>= k);
}
cout << ans << "\n";
}
signed main () {
#ifndef ONLINE_JUDGE
// freopen("0.in", "r", stdin);
// freopen("0.out", "w", stdout);
#endif
_upgrade
int T = 1;
while(T--) go();
return (0-0); //<3
}
/* stuff you should look for
* int overflow, array bounds
* special cases (n=1?)
*/
Compilation message
mushrooms.cpp:2:40: warning: bad option '-f unroll-loops' to pragma 'optimize' [-Wpragmas]
2 | #pragma GCC optimize("O3, unroll-loops")
| ^
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
3 | #pragma GCC target("avx2")
| ^
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes]
mushrooms.cpp:3:26: warning: bad option '-f unroll-loops' to attribute 'optimize' [-Wattributes
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
8 ms |
15956 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
8 ms |
15956 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
15956 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
11 ms |
17156 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
18 ms |
29232 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
8 ms |
15956 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |