Submission #59578553


Source Code Expand

Copy
#include<atcoder/all>
#include<bits/stdc++.h>
template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define reps(i,a,n) for(int i=(a);i<(int)(n);++i)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define all(box) (box).begin(), (box).end()
using namespace std;
using namespace atcoder;
typedef long long ll;
const ll INF=1LL<<60;
using P=pair<int,int>;
int dx1[]={1,-1,0,0};
int dy1[]={0,0,1,-1};
int dx2[]={0,0,1,-1,1,-1,1,-1};
int dy2[]={1,-1,0,0,1,-1,-1,1};
//10->n
/*
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include<atcoder/all>
#include<bits/stdc++.h>

template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define reps(i,a,n) for(int i=(a);i<(int)(n);++i)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define all(box) (box).begin(), (box).end()
using namespace std;
using namespace atcoder;
typedef long long ll;
const ll INF=1LL<<60;
using P=pair<int,int>;
int dx1[]={1,-1,0,0};
int dy1[]={0,0,1,-1};
int dx2[]={0,0,1,-1,1,-1,1,-1};
int dy2[]={1,-1,0,0,1,-1,-1,1};

//10->n進数へ変換
/*
    vector<int> ans;
    while(k){
        ans.push_back(k%2);
        k/=2;
    }
*/
//n進数->10進数へ変換
/*
ll f(string s,ll k){
    ll ans=0;
    for(char x:s){
        ans *= k;
        ans += x - '0';
    }
    return ans;
}
*/
int main() {
    int N, K;
    string S;
    cin >> N >> K >> S;

    int ans=0;
    for (int i = 0; i <= N - K; i++) {

        bool ok= true;
        for (int j = 0; j < K; j++) {
            if (S[i + j] == 'X') {
                ok = false;
                break;
            }
        }
        
        if (ok) {
            ans++;
           
            for (int j = 0; j < K; j++) {
                S[i + j] = 'X';
            }
        }
    }

    cout << ans << endl;
    return 0;
}

Submission Info

Submission Time
Task B - Strawberries
User rihojianbu
Language C++ 20 (gcc 12.2)
Score 200
Code Size 1473 Byte
Status AC
Exec Time 1 ms
Memory 3680 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 27
Set Name Test Cases
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_00.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 01_random_11.txt, 01_random_12.txt, 01_random_13.txt, 01_random_14.txt, 01_random_15.txt, 01_random_16.txt, 01_random_17.txt, 01_random_18.txt, 01_random_19.txt, 01_random_20.txt, 01_random_21.txt, 01_random_22.txt, 01_random_23.txt
Case Name Status Exec Time Memory
00_sample_00.txt AC 1 ms 3484 KB
00_sample_01.txt AC 1 ms 3596 KB
00_sample_02.txt AC 1 ms 3560 KB
01_random_00.txt AC 1 ms 3596 KB
01_random_01.txt AC 1 ms 3496 KB
01_random_02.txt AC 1 ms 3516 KB
01_random_03.txt AC 1 ms 3524 KB
01_random_04.txt AC 1 ms 3544 KB
01_random_05.txt AC 1 ms 3528 KB
01_random_06.txt AC 1 ms 3680 KB
01_random_07.txt AC 1 ms 3472 KB
01_random_08.txt AC 1 ms 3476 KB
01_random_09.txt AC 1 ms 3472 KB
01_random_10.txt AC 1 ms 3516 KB
01_random_11.txt AC 1 ms 3480 KB
01_random_12.txt AC 1 ms 3524 KB
01_random_13.txt AC 1 ms 3516 KB
01_random_14.txt AC 1 ms 3680 KB
01_random_15.txt AC 1 ms 3596 KB
01_random_16.txt AC 1 ms 3496 KB
01_random_17.txt AC 1 ms 3396 KB
01_random_18.txt AC 1 ms 3472 KB
01_random_19.txt AC 1 ms 3492 KB
01_random_20.txt AC 1 ms 3552 KB
01_random_21.txt AC 1 ms 3552 KB
01_random_22.txt AC 1 ms 3496 KB
01_random_23.txt AC 1 ms 3528 KB


2025-04-04 (Fri)
04:16:27 +00:00