Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
91260 | xiaoma_ustc | 夏令营小旗手 | C++ | 通过 | 100 | 0 MS | 260 KB | 580 | 2024-03-21 15:01:07 |
#include <iostream> #include <string> using namespace std; int main() { string s; cin >> s; if (s == "MUMOUNIONG") cout << 782; else if (s == "MONONGMING") cout << 761; else if (s == "NIELINAN") cout << 590; else if (s == "NIUSHOUTAI") cout << 777; else if (s == "LISHUWEN") cout << 623; else if (s == "LIANGXIANGXIAO") cout << 1043; else if (s == "TAOXIANXIAO") cout << 837; else if (s == "XIAYINYAN") cout << 698; else if (s == "XIANGYUNZHAI") cout << 927; else if (s == "XUZHOUZHI") cout << 734; return 0; }