File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2
2
.project
3
3
bin /
4
4
.vscode
5
- input /69394 .json
5
+ input /361157 .json
6
6
pscores *
7
7
pmedals. *
8
8
pindex.html
Original file line number Diff line number Diff line change 14
14
public class Private {
15
15
16
16
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 ();
18
18
JSONObject event = new JSONObject (input );
19
19
int year = Integer .parseInt (event .getString ("event" ));
20
20
JSONObject members = event .getJSONObject ("members" );
@@ -92,12 +92,10 @@ public static void main(String[] args) throws IOException {
92
92
for (String name : scores .keySet ()) {
93
93
SimpleDateFormat format = new SimpleDateFormat ("yyyy-MM-dd'T'HH:mm:ssX'00'" );
94
94
String time1 = String .format ("%04d-12-%02dT00:00:00-0500" , year , day );
95
- String time2 = data .get (dayKey ).get (starKey ).get (name );
96
95
long t1 = 0 ;
97
- long t2 = 0 ;
96
+ long t2 = Long . parseLong ( data . get ( dayKey ). get ( starKey ). get ( name ))* 1000 ;
98
97
try {
99
98
t1 = format .parse (time1 ).getTime ();
100
- t2 = format .parse (time2 ).getTime ();
101
99
} catch (ParseException e ) {
102
100
System .out .println ("Parse error dates" );
103
101
System .exit (1 );
You can’t perform that action at this time.
0 commit comments