Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
91146 | xiaoma_ustc | 密码锁 | C++ | 解答错误 | 40 | 0 MS | 256 KB | 233 | 2024-03-21 12:56:52 |
#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 cout << 0 << endl; return 0; }