4 条题解

  • -1
    @ 2026-6-3 20:36:26

    #include <bits/stdc++.h>

    using namespace std;

    int main() {

    int n;
    cin >> n;
    if (n % 2 == 0) {
    	int m = n / 2;
    	if (m % 2 == 0) {
    		cout << "YES";
    		return 0;
    	} else {
    		cout << "NO";
    		return 0;
    	}
    } else {
    	cout << "NO";
    	return 0;
    }
    

    }

信息

ID
30937
时间
1000ms
内存
256MiB
难度
7
标签
(无)
递交数
151
已通过
40
上传者