fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. void solve(int n)
  5. {
  6. if (n % 2020 <= n / 2020)
  7. {
  8. cout << "YES" << endl;
  9. }
  10. else
  11. {
  12. cout << "NO" << endl;
  13. }
  14. }
  15.  
  16. int main()
  17. {
  18. ios_base::sync_with_stdio(false);
  19. cin.tie(0);
  20.  
  21. int t;
  22. cin >> t;
  23.  
  24. while (t--)
  25. {
  26. int n;
  27. cin >> n;
  28.  
  29. solve(n);
  30. }
  31. }
Success #stdin #stdout 0.01s 5284KB
stdin
5
1
4041
4042
8081
8079
stdout
NO
YES
YES
YES
NO