Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149614 8 拉线开关 C++ Accepted 0 MS 268 KB 159 2026-03-14 17:37:16

Tests(4/4):


Code:

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