Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 2711 - 오타맨 고창영(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/2711
입력받은 수의 위치만 출력하지 않으면 되는 문제입니다.
자세한 것은 코드를 참고해주세요.
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <cstring>
#include <cmath>
using namespace std;
int N;
int main(){
cin.tie(0);
cout.tie(0);
cin >> N;
for(int i = 0; i < N; i++){
int x;
string y;
cin >> x >> y;
for(int j = 0; j < y.size(); j++){
if(x-1 == j) continue;
cout << y[j];
}
cout << "\n";
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요
'백준' 카테고리의 다른 글
백준 11098 - 첼시를 도와줘!(C++) (0) | 2023.05.18 |
---|---|
백준 2857 - FBI(C++) (0) | 2023.05.18 |
백준 5586 - JOI와 IOI(C++) (0) | 2023.05.16 |
백준 18406 - 럭키 스트레이트(C++) (0) | 2023.05.16 |
백준 5524 - 입실 관리(C++) (0) | 2023.05.16 |