Submission #1662081


Source Code Expand

#include <iostream>
using namespace std;

int main(){
	string S;
	getline(cin, S);
	string ans = "";
	for(int now = 0; now < S.size(); now++){
		if(S[now] == 'L'){
			ans += "< ";
			now += 4;
		}else if(S[now] == 'R'){
			ans += "> ";
			now += 5;
		}else{
			ans += "A ";
			now += 7;
		}
	}
	ans.pop_back();
	cout << ans << endl;
}

Submission Info

Submission Time
Task A - スペース高橋君
User June_boy
Language C++14 (GCC 5.4.1)
Score 100
Code Size 355 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 14
Set Name Test Cases
Sample example_0.txt, example_1.txt, example_2.txt
All corner_0.txt, corner_1.txt, corner_2.txt, example_0.txt, example_1.txt, example_2.txt, maxrand_0.txt, maxrand_1.txt, maxrand_2.txt, random_0.txt, random_1.txt, random_2.txt, random_3.txt, random_4.txt
Case Name Status Exec Time Memory
corner_0.txt AC 1 ms 256 KB
corner_1.txt AC 1 ms 256 KB
corner_2.txt AC 1 ms 256 KB
example_0.txt AC 1 ms 256 KB
example_1.txt AC 1 ms 256 KB
example_2.txt AC 1 ms 256 KB
maxrand_0.txt AC 1 ms 256 KB
maxrand_1.txt AC 1 ms 256 KB
maxrand_2.txt AC 1 ms 256 KB
random_0.txt AC 1 ms 256 KB
random_1.txt AC 1 ms 256 KB
random_2.txt AC 1 ms 256 KB
random_3.txt AC 1 ms 256 KB
random_4.txt AC 1 ms 256 KB