Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
52373 | 诚 | 修复符文 | C++ | 解答错误 | 0 | 12 MS | 580 KB | 241 | 2022-07-19 12:03:31 |
#include <bits/stdc++.h> using namespace std; int n,m; string s1,s2; int main() { int T; cin>>T; while(T--) { cin>>s1>>s2; cin>>n>>m; if(m%2==0) cout<<"yes\n"; else cout<<"no\n"; } return 0; }