Accepted
Code
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n, flag = 0;
scanf("%d", &n);
if (n >= 1000 && n <= 1000000)
{
if ((n % 4 == 0 && n % 100 != 0) || n % 400 == 0)
{
flag = 1;
}
}
if (flag == 0)
{
cout << "NO" << endl;
}
else
{
cout << "YES" << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1023 Happy new year 2024
- Contest
- Brain booster - 1
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2023-12-31 14:09:42
- Judged At
- 2024-11-11 03:46:23
- Judged By
- Score
- 100
- Total Time
- 1ms
- Peak Memory
- 332.0 KiB