-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNewYearsNumber.java
44 lines (41 loc) · 1.11 KB
/
NewYearsNumber.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*https://codeforces.com/problemset/problem/1475/B*/
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
//import java.util.HashMap;
public class NewYearsNumber
{
//static HashMap<Integer,Boolean> map;
public static void main(String[] args)throws IOException
{
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int tests = Integer.parseInt(reader.readLine());
int n, mod, quo;
while (tests-- > 0)
{
/*map = new HashMap<Integer,Boolean>();
map.put(2020,true);
map.put(2021,true);*/
n = Integer.parseInt(reader.readLine());
quo = n/2020;
mod = n%2020;
if (mod <= quo) System.out.println("YES");
else System.out.println("NO");
}
}
/*public static boolean recur(int n)
{
if (n == 2020 || n == 2021) return true;
if (n == 0) return true;
if (n < 2020)
{
map.put(n,false);
return false;
}
if (map.containsKey(n-2020)) return (Boolean)map.get(n-2020);
if (map.containsKey(n-2021)) return (Boolean)map.get(n-2021);
boolean result = recur(n-2020) || recur(n-2021);
map.put(n,result);
return result;
}*/
}