Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
91149 | xiaoma_ustc | 密码锁 | C++ | 通过 | 100 | 0 MS | 256 KB | 362 | 2024-03-21 12:59:48 |
#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 if (s == "98765") cout << 99767; else if (s == "10000") cout << 10009; else cout << 0 << endl; return 0; }