Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145070 刘宸宇 拉线开关 C++ Accepted 0 MS 276 KB 157 2026-01-24 20:36:23

Tests(4/4):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int m; cin>>m; if(m%2==0) cout<<0<<endl; else cout<<1<<endl; return 0; }