Compile Error
/in/foo.c:1:24: fatal error: bits/stdc++.h: No such file or directory #include<bits/stdc++.h> ^ compilation terminated.
代码
#include<bits/stdc++.h>
using namespace std;
string s;
int n,ans=1,flag;
int main()
{
std::ios::sync_with_stdio(0);
std::cin.tie(0);
std::cout.tie(0);
cin>>n>>s;
for(int i=0; i<n-1; i++)
{
if(s[i]=='L')
ans++;
else
break;
}
for(int i=n-1; i>0; i--)
{
if(s[i]=='R')
ans++;
else
break;
}
cout<<ans<<endl;
return 0;
}
信息
- 递交者
- 类型
- 自测
- 题目
- P1413 争执
- 语言
- C
- 递交时间
- 2024-07-26 13:52:50
- 评测时间
- 2024-07-26 13:52:50
- 评测机
- 分数
- 0
- 总耗时
- 0ms
- 峰值内存
- 0 Bytes