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