-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfriday.java
191 lines (143 loc) · 3.83 KB
/
friday.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
ID: mrdrmee1
LANG: JAVA
TASK: friday
*/
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
public class friday {
public static boolean leap (int y) {
return y % 400 == 0 || y % 100 != 0 && y % 4 == 0;
}
public static void main (String[] t) throws IOException {
INPUT in = new INPUT ("friday.in");
PrintWriter out = new PrintWriter (new BufferedWriter (new FileWriter ("friday.out")));
//INPUT in = new INPUT (System.in);
//PrintWriter out = new PrintWriter (System.out);
int[] months = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int end = in.iscan ();
int[] count = new int[7];//[0, 6] = saturday->friday
int date = 2;
for (int y = 1900; y < 1900 + end; ++y) {
for (int m = 0; m < 12; ++m) {
for (int d = 1; d <= months[m] + (m == 1 && leap (y) ? 1 : 0); ++d, date = (date + 1) % 7) {
if (d == 13)
++count[date];
}
}
}
for (int d = 0; d < count.length; ++d)
out.print (count[d] + (d == count.length - 1 ? "" : " "));
out.println ();
out.close ();
}
private static class INPUT {
private InputStream stream;
private byte[] buf = new byte[1024];
private int curChar, numChars;
public INPUT (InputStream stream) {
this.stream = stream;
}
public INPUT (String file) throws IOException {
this.stream = new FileInputStream (file);
}
public static int fast_pow (int b, int x) {
if (x == 0) return 1;
if (x == 1) return b;
if (x % 2 == 0) return fast_pow (b * b, x / 2);
return b * fast_pow (b * b, x / 2);
}
public int cscan () throws IOException {
//if (numChars == -1) throw new InputMismatchException ();
if (curChar >= numChars) {
curChar = 0;
numChars = stream.read (buf);
//if (numChars <= 0) return -1;
}
return buf[curChar++];
}
public int iscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
int res = 0;
do {
//if (c < '0' || c > '9') throw new InputMismatchException ();
res = (res << 1) + (res << 3);
//res *= 10;
res += c - '0';
c = cscan ();
}
while (!space (c));
return res * sgn;
}
public String sscan () throws IOException {
int c = cscan ();
while (space (c)) c = cscan ();
StringBuilder res = new StringBuilder ();
do {
res.appendCodePoint (c);
c = cscan ();
}
while (!space (c));
return res.toString ();
}
public double dscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
double res = 0;
while (!space (c) && c != '.') {
if (c == 'e' || c == 'E') return res * fast_pow (10, iscan ()); /*Math.pow (10, iscan ());*/
//if (c < '0' || c > '9') throw new InputMismatchException ();
//res = (res << 1) + (res << 3);
res *= 10;
res += c - '0';
c = cscan ();
}
if (c == '.') {
c = cscan ();
double m = 1;
while (!space (c)) {
if (c == 'e' || c == 'E') return res * fast_pow (10, iscan ()); /*Math.pow (10, iscan ());*/
//if (c < '0' || c > '9') throw new InputMismatchException ();
m /= 10;
res += (c - '0') * m;
c = cscan ();
}
}
return res * sgn;
}
public long lscan () throws IOException {
int c = cscan (), sgn = 1;
while (space (c)) c = cscan ();
if (c == '-') {
sgn = -1;
c = cscan ();
}
long res = 0;
do {
//if (c < '0' || c > '9') throw new InputMismatchException();
res = (res << 1) + (res << 3);
//res *= 10;
res += c - '0';
c = cscan ();
}
while (!space (c));
return res * sgn;
}
public boolean space (int c) {
return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
}
}
}