Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4968 | liumingxuan | 水下探测器 | C++ | 通过 | 0 MS | 248 KB | 316 | 2023-01-13 12:58:11 |
#include<bits/stdc++.h> using namespace std; int main(){ int h,t; cin>>h>>t; string s; cin>>s; for(int i=0;i<s.size();i++) if(s[i]=='u')t=max(t-1,0); else t=min(t+1,h); cout<<t; return 0; } /* #include<cstdio> freopen("文件名.in","r",stdin); freopen("文件名.out","w",stdout); */