Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148456 张晓冉 拉线开关 C++ Accepted 0 MS 272 KB 159 2026-02-16 16:55:24

Tests(4/4):


Code:

#include <iostream> using namespace std; int main() { int M; cin >> M; cout << (M % 2 == 1 ? 1 : 0) << endl; return 0; }