Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136404 严鑫亮 晚餐 C++ Wrong Answer 1 MS 268 KB 379 2025-11-13 15:44:56

Tests(0/1):


Code:

#include <iostream> #include <cstring> using namespace std; int main() { int n; cin >> n; for(int j = 0; j < n ;j++){ for(int i = 0; i < n; i++) { string s; cin >> s; if(s == "bowl" || s == "knife" || s == "fork" || s == "chopsticks" ) { cout << s; } } } }


Run Info:

------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-----
bowl