模拟once
2024-11-20 22:23:07
发布于:云南
3阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
long long x = 0,y = 0;
int n; cin >> n;
string s; cin >> s;
for(int i = 0;i < s.size();i++){
if(s[i] == 'D') y--;
else if(s[i] == 'U') y++;
else if(s[i] == 'L') x--;
else if(s[i] == 'R') x++;
}
cout << "(" << x << "," << y << ")";
return 0;
}
这里空空如也
有帮助,赞一个