| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136403 | 严鑫亮 | 晚餐 | C++ | Wrong Answer | 1 MS | 268 KB | 392 | 2025-11-13 15:42:31 |
#include <iostream> #include <cstring> using namespace std; int main() { int m; while(cin >> m){ int n; cin >> n; for(int i = 0; i < n; i++) { string s; cin >> s; if(s == "bowl" || s == "knife" || s == "fork" || s == "chopsticks" ) { cout << s; } } } }
------Input------
2 football bowl 5 meat toy paper pen fork 3 book chopsticks bowl 4 chopsticks bowl fork knife 6 bowl knife chopsticks fork toy book 1 fork 7 book toy football meat baseball cap fork 8 cap cloth paper meat fork bowl chopsticks toy 9 cap cloth paper meat fork bowl chopsticks toy book 10 cap cloth paper meat fork bowl chopsticks toy book pen
------Answer-----
bowl fork chopsticks bowl chopsticks bowl fork knife bowl knife chopsticks fork fork fork fork bowl chopsticks fork bowl chopsticks fork bowl chopsticks
------Your output-----