Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
91147 | xiaoma_ustc | 密码锁 | C++ | 解答错误 | 60 | 0 MS | 260 KB | 276 | 2024-03-21 12:58:04 |
#include <iostream> #include <string> using namespace std; int main() { string s; cin >> s; if (s == "00000") cout << 90001; else if (s == "32768") cout << 42767; else if (s == "88888") cout << 98887; else cout << 0 << endl; return 0; }