Skip to content

Commit 59b6eb6

Browse files
committed
Update for 2018
1 parent 9002847 commit 59b6eb6

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.project
33
bin/
44
.vscode
5-
input/69394.json
5+
input/361157.json
66
pscores*
77
pmedals.*
88
pindex.html

src/Private.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
public class Private {
1515

1616
public static void main(String[] args) throws IOException {
17-
String input = new String(Files.readAllBytes(Paths.get("input/69394.json"))).trim();
17+
String input = new String(Files.readAllBytes(Paths.get("input/361157.json"))).trim();
1818
JSONObject event = new JSONObject(input);
1919
int year = Integer.parseInt(event.getString("event"));
2020
JSONObject members = event.getJSONObject("members");
@@ -92,12 +92,10 @@ public static void main(String[] args) throws IOException {
9292
for (String name : scores.keySet()) {
9393
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssX'00'");
9494
String time1 = String.format("%04d-12-%02dT00:00:00-0500", year, day);
95-
String time2 = data.get(dayKey).get(starKey).get(name);
9695
long t1 = 0;
97-
long t2 = 0;
96+
long t2 = Long.parseLong(data.get(dayKey).get(starKey).get(name))*1000;
9897
try {
9998
t1 = format.parse(time1).getTime();
100-
t2 = format.parse(time2).getTime();
10199
} catch (ParseException e) {
102100
System.out.println("Parse error dates");
103101
System.exit(1);

0 commit comments

Comments
 (0)