Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
41496 | DUANZHIBO | 水下探测器 | C++ | 解答错误 | 1 MS | 252 KB | 307 | 2024-02-21 10:50:15 |
#include<iostream> #include<cstring> using namespace std; char command[101]; int h,s; int main() { cin>>s>>h; cin>>command; for(int i=0;i<strlen(command);i++){ if(command[i]=='u'){ if(s>0){ s--; } } else if(command[i]=='d'&&s<h){ s++; } } cout<<s; return 0; }