Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
48941 | fuhaoze | 水下探测器 | C++ | Accepted | 1 MS | 256 KB | 235 | 2024-06-15 13:49:53 |
#include<bits/stdc++.h> using namespace std; int main() { int h,s; string str; cin>>h>>s>>str; for(int i=0;i<str .size();i++){ if(str[i]=='u'){ if(s>0) s--; } else if(s<h)s++; } cout<<s; return 0; }