Description:
add more detail to hof
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r441:a3fff45b1b87 - - 1 file changed: 1 inserted, 1 deleted

@@ -1,54 +1,54
1 1 :css
2 2 .hof_user { color: orangered; font-style: italic; }
3 3 .hof_language { color: green; font-style: italic; }
4 4 .hof_value { color: deeppink;font-style: italic; }
5 5
6 - %h2 Overall
6 + %h2 Overall of #{Problem.find(params[:id]).full_name}
7 7
8 8 - if @best
9 9 %b Best Runtime:
10 10 by #{link_to @best[:runtime][:user], controller:'users', action:'profile', id:@best[:memory][:user_id]}
11 11 using <span class="hof_language">#{@best[:runtime][:lang]}</span>
12 12 with <span class="hof_value">#{@best[:runtime][:value] * 1000} milliseconds</span>
13 13 at submission
14 14 = link_to("#" + @best[:runtime][:sub_id].to_s, controller: 'graders', action: 'submission', id:@best[:runtime][:sub_id])
15 15 %br/
16 16
17 17 %b Best Memory Usage:
18 18 by #{link_to @best[:memory][:user], controller:'users', action:'profile', id:@best[:memory][:user_id]}
19 19 using <span class="hof_language">#{@best[:memory][:lang]}</span>
20 20 with <span class="hof_value">#{number_with_delimiter(@best[:memory][:value])} kbytes </span>
21 21 at submission
22 22 = link_to("#" + @best[:memory][:sub_id].to_s, controller: 'graders' , action: 'submission', id:@best[:memory][:sub_id])
23 23 %br/
24 24
25 25 %b Shortest Code:
26 26 by #{link_to @best[:length][:user], controller:'users', action:'profile', id:@best[:length][:user_id]}
27 27 using <span class="hof_language">#{@best[:length][:lang]}</span>
28 28 with <span class="hof_value">#{@best[:length][:value]} bytes</span>
29 29 at submission
30 30 = link_to("#" + @best[:length][:sub_id].to_s, controller: 'graders' , action: 'submission', id: @best[:length][:sub_id])
31 31 %br/
32 32
33 33 %b First solver:
34 34 #{link_to @best[:first][:user], controller:'users', action:'profile', id:@best[:first][:user_id]} is the first solver
35 35 using <span class="hof_language">#{@best[:first][:lang]}</span>
36 36 on <span class="hof_value">#{@best[:first][:value]}</span>
37 37 at submission
38 38 = link_to("#" + @best[:first][:sub_id].to_s, controller: 'graders' , action: 'submission', id: @best[:first][:sub_id])
39 39 %br/
40 40
41 41
42 42 %p
43 43 This counts only for submission with 100% score <br/>
44 44 Right now, java is excluded from memory usage competition. (Because it always uses 2GB memory...)
45 45
46 46 %h2 By language
47 47
48 48 %table.info
49 49 %thead
50 50 %tr.info-head
51 51 %th Language
52 52 %th Best runtime (ms)
53 53 %th Best memory (kbytes)
54 54 %th Shortest Code (bytes)
You need to be logged in to leave comments. Login now