Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147817 于墨轩 拉线开关 C++ Accepted 1 MS 272 KB 155 2026-02-07 23:17:02

Tests(4/4):


Code:

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