답안 #168538

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
168538 2019-12-13T14:54:34 Z abil 입자 가속기 (IZhO11_collider) C++14
100 / 100
719 ms 2604 KB
#include <bits/stdc++.h>

#define fr first
#define sc second
#define pb push_bacak
#define mk make_pair
#define all(s) s.begin(),s.end()
//#define int long long

using namespace std;

const int N = (1e6 + 12);
const int mod = (1e9 + 7);
const int INF = (0x3f3f3f3f);

main()
{
	string s;
	int n, m, l, r;
	cin >> n >> m;
	cin >> s;
	char ch;
	while(m--){
		cin >> ch;
		if(ch == 'a'){
			cin >> l >> r;
			l--;
			r--;
			string c = "";
			c = (s[l]);
			s.erase(l, 1);
			s.insert(r,c);
		}
		else{
			cin >> l;
			l--;
			cout << s[l] << endl;
		}
	}
	
}

Compilation message

collider.cpp:16:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main()
      ^
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 256 KB Output is correct
2 Correct 17 ms 376 KB Output is correct
3 Correct 31 ms 860 KB Output is correct
4 Correct 239 ms 1528 KB Output is correct
5 Correct 395 ms 1556 KB Output is correct
6 Correct 541 ms 1556 KB Output is correct
7 Correct 602 ms 2480 KB Output is correct
8 Correct 287 ms 2476 KB Output is correct
9 Correct 719 ms 2476 KB Output is correct
10 Correct 512 ms 2604 KB Output is correct