Submission #39043154


Source Code Expand

Copy
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
int[] nk = Arrays.stream(in.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
String s = in.readLine();
int finalists = 0;
String t = "";
for(int a = 0; a < s.length(); a++)
{
if (s.charAt(a) == 'o') {
t += 'o';
finalists++;
} else {
t += 'x';
}
if (finalists == nk[1]) {
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        int[] nk = Arrays.stream(in.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
        String s = in.readLine();
        int finalists = 0;
        String t = "";
        for(int a = 0; a < s.length(); a++)
        {
            if (s.charAt(a) == 'o') {
                t += 'o';
                finalists++;
            } else {
                t += 'x';
            }
            if (finalists == nk[1]) {
               break;
            }
        }
        for (int b = t.length(); b<nk[0]; b++) {
            t += 'x';
        }
        System.out.println(t);
    }
}

Submission Info

Submission Time
Task B - Qual B
User Suvasish
Language Java (OpenJDK 1.8.0)
Score 200
Code Size 907 Byte
Status AC
Exec Time 200 ms
Memory 31452 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 1
AC × 45
Set Name Test Cases
Sample sample_01.txt
All sample_01.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt, test_44.txt
Case Name Status Exec Time Memory
sample_01.txt AC 200 ms 31256 KB
test_01.txt AC 144 ms 31040 KB
test_02.txt AC 146 ms 31208 KB
test_03.txt AC 144 ms 31400 KB
test_04.txt AC 143 ms 31272 KB
test_05.txt AC 139 ms 31180 KB
test_06.txt AC 142 ms 31076 KB
test_07.txt AC 139 ms 31308 KB
test_08.txt AC 139 ms 31140 KB
test_09.txt AC 141 ms 31384 KB
test_10.txt AC 141 ms 31160 KB
test_11.txt AC 144 ms 31316 KB
test_12.txt AC 144 ms 31256 KB
test_13.txt AC 144 ms 31272 KB
test_14.txt AC 141 ms 31256 KB
test_15.txt AC 144 ms 31200 KB
test_16.txt AC 139 ms 31192 KB
test_17.txt AC 144 ms 31192 KB
test_18.txt AC 140 ms 31284 KB
test_19.txt AC 140 ms 31188 KB
test_20.txt AC 138 ms 31252 KB
test_21.txt AC 144 ms 31224 KB
test_22.txt AC 137 ms 31388 KB
test_23.txt AC 138 ms 31144 KB
test_24.txt AC 143 ms 31384 KB
test_25.txt AC 143 ms 31332 KB
test_26.txt AC 143 ms 31208 KB
test_27.txt AC 138 ms 31320 KB
test_28.txt AC 137 ms 31180 KB
test_29.txt AC 138 ms 31160 KB
test_30.txt AC 146 ms 31376 KB
test_31.txt AC 140 ms 31128 KB
test_32.txt AC 139 ms 31256 KB
test_33.txt AC 141 ms 31352 KB
test_34.txt AC 140 ms 31160 KB
test_35.txt AC 143 ms 31356 KB
test_36.txt AC 140 ms 31360 KB
test_37.txt AC 141 ms 31248 KB
test_38.txt AC 139 ms 31272 KB
test_39.txt AC 141 ms 31328 KB
test_40.txt AC 140 ms 31320 KB
test_41.txt AC 144 ms 31300 KB
test_42.txt AC 141 ms 31452 KB
test_43.txt AC 145 ms 31396 KB
test_44.txt AC 138 ms 31324 KB


2025-03-05 (Wed)
18:09:59 +00:00