codeforces-solutions-downloader 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d7b2b963f3cb9ce8258de0cd3d269fb5487eab6a
4
+ data.tar.gz: cd0669e74450209f1f93f470c57a0181bf706c56
5
+ SHA512:
6
+ metadata.gz: b51cf178d235d56c71b481a84e28694465039df08e3c159ba1045906f7673ed0fc44f8180ea74460c223fdf08d461a99e10fc550250660e9606132603383de16
7
+ data.tar.gz: 5c328da1bc6a03a6e34c56c92b363f7401aca95cbfa2c1d57282da12b307dec2c7229de6b0086436c0ccdb775f3fcaea550e1151f19e43e3257233fce411805c
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in codeforces-solutions-downloader.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Hiroyuki Sano
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Codeforces::Solutions::Downloader
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'codeforces-solutions-downloader'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install codeforces-solutions-downloader
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/<my-github-username>/codeforces-solutions-download/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1,4 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rspec/core/rake_task'
4
+ RSpec::Core::RakeTask.new(:spec)
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require_relative '../lib/codeforces/solutions/downloader'
4
+
5
+ app = Codeforces::Solutions::Downloader::Application.new
6
+ app.parse_options ARGV
7
+ app.fetch_submissions
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'codeforces/solutions/downloader/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "codeforces-solutions-downloader"
8
+ spec.version = Codeforces::Solutions::Downloader::VERSION
9
+ spec.authors = ["Hiroyuki Sano"]
10
+ spec.email = ["sh19910711@gmail.com"]
11
+ spec.summary = %q{Codeforces Solutions Downloader}
12
+ spec.description = %q{Codeforces Solutions Downloader}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "nokogiri"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.5"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "rspec"
26
+ spec.add_development_dependency "webmock"
27
+ spec.add_development_dependency "fakefs"
28
+ end
@@ -0,0 +1,10 @@
1
+ require_relative "downloader/version"
2
+ require_relative "downloader/application"
3
+
4
+ module Codeforces
5
+ module Solutions
6
+ module Downloader
7
+ # Your code goes here...
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,178 @@
1
+ require 'optparse'
2
+ require 'net/http'
3
+ require 'uri'
4
+ require 'nokogiri'
5
+ require 'fileutils'
6
+
7
+ module Codeforces
8
+ module Solutions
9
+ module Downloader
10
+ class Application
11
+ public
12
+ attr_accessor :option
13
+
14
+ def initialize
15
+ @option = {
16
+ :page_offset => 1,
17
+ :page_limit => 5,
18
+ :page_limit_specified => false,
19
+ :output_directory => 'dist',
20
+ }
21
+ end
22
+
23
+ # parse options
24
+ # @param [Array] argv array of command options
25
+ # @return [nil]
26
+ def parse_options(argv)
27
+ OptionParser.new do |option_parser|
28
+ option_parser.version = Codeforces::Solutions::Downloader::VERSION
29
+ # user_id
30
+ option_parser.on('-u user-id', '--user-id user-id', 'specify codeforces user id', String) {|user_id|
31
+ @option[:user_id] = user_id
32
+ }
33
+ # page offset
34
+ option_parser.on('-o page-offset', '--page-offset page-offset', 'specify page offset (default = 0)', Integer) {|page_offset|
35
+ @option[:page_offset] = page_offset
36
+ }
37
+ # page limit
38
+ option_parser.on('-l page-limit', '--page-limit page-limit', 'specify max page number (default = 5)', Integer) {|page_limit|
39
+ @option[:page_limit] = page_limit
40
+ @option[:page_limit_specified] = true
41
+ }
42
+ # directory
43
+ option_parser.on('-d directory', '--output-directory directory', 'specify output directory (default = dist)', String) {|output_directory|
44
+ @option[:output_directory] = output_directory
45
+ }
46
+ option_parser.parse! argv
47
+ end
48
+ if @option[:user_id].nil?
49
+ abort "Error: user id must be specified"
50
+ end
51
+ nil
52
+ end
53
+
54
+ # get submissions data from codeforces.com
55
+ # @return [Array] list of submissions
56
+ def fetch_submissions
57
+ puts "pending..."
58
+
59
+ @page_limit = @option[:page_limit]
60
+ @page_limit = [@page_limit, get_page_limit() - @option[:page_offset] + 1].min
61
+
62
+ puts "get submission list"
63
+ puts " page_limit = #{@page_limit}"
64
+ puts " page_offset = #{@option[:page_offset]}"
65
+ puts " output_directory = #{@option[:output_directory]}"
66
+
67
+ submissions = get_submissions()
68
+
69
+ len = submissions.length
70
+ cnt = 0
71
+ submissions.each {|s|
72
+ info = fetch_submission s[:contest_id], s[:submission_id]
73
+ ext = resolve_language(info[:language])
74
+ filename = "#{@option[:output_directory]}/#{s[:submission_id]}.#{ext}"
75
+
76
+ FileUtils.mkdir_p "#{@option[:output_directory]}"
77
+ File.open(filename, 'w') {|f| f.write info[:source] }
78
+
79
+ cnt += 1
80
+ puts "save: #{filename} [#{cnt}/#{len}]"
81
+ }
82
+ end
83
+
84
+ def fetch_submission(contest_id, submission_id)
85
+ url = "http://codeforces.com/contest/#{contest_id}/submission/#{submission_id}"
86
+ puts "fetch: #{url}"
87
+ sleep 5
88
+ body = get_body(url)
89
+ doc = Nokogiri::HTML body
90
+ {
91
+ :source => doc.xpath('id("content")').search('//pre[contains(concat(" ",@class," ")," prettyprint ")]').text.strip,
92
+ :language => doc.xpath('//table//tr')[1].search('//td')[3].text.strip,
93
+ }
94
+ end
95
+
96
+ private
97
+ def get_page_limit
98
+ url = "http://codeforces.com/submissions/#{@option[:user_id]}/page/1"
99
+ body = get_body(url)
100
+ doc = Nokogiri::HTML body
101
+ items = doc.xpath('//div[contains(concat(" ",@class," ")," pagination ")]//span[contains(concat(" ",@class," ")," page-index ")]').search('a')
102
+ # example: /submissions/sh19910711/page/35
103
+ items.map {|item| /[0-9]+$/.match(item.attributes["href"].value)[0].to_i }.max
104
+ end
105
+
106
+ def get_submissions()
107
+ page_start = @option[:page_offset]
108
+ page_end = page_start + @page_limit - 1
109
+ submissions = (page_start..page_end).map do |page_id|
110
+ url = "http://codeforces.com/submissions/#{@option[:user_id]}/page/#{page_id}"
111
+ puts "fetch: #{url} [#{page_id - page_start + 1}/#{page_end - page_start + 1}]"
112
+ sleep 5
113
+ body = get_body(url)
114
+ doc = Nokogiri::HTML body
115
+ items = doc.xpath('//table[contains(concat(" ",@class," ")," status-frame-datatable ")]').search('tr[@data-submission-id]')
116
+ res = items.map {|item|
117
+ td_list = item.search('td')
118
+ {
119
+ :submission_id => td_list[0].text.strip,
120
+ :contest_id => /\/problemset\/problem\/([0-9]+)/.match(td_list[3].search('a')[0].attributes['href'].value.strip)[1]
121
+ }
122
+ }
123
+ end
124
+ submissions.flatten
125
+ end
126
+
127
+ def get_body(url)
128
+ Net::HTTP.get URI.parse(url)
129
+ end
130
+
131
+ # return file extension
132
+ def resolve_language(language_text)
133
+ case language_text
134
+ when "GNU C"
135
+ "c"
136
+ when "GNU C++"
137
+ "cpp"
138
+ when "GNU C++0x"
139
+ "cpp"
140
+ when "MS C++"
141
+ "cpp"
142
+ when "Mono C#"
143
+ "cs"
144
+ when "MS C#"
145
+ "cs"
146
+ when "D"
147
+ "d"
148
+ when "Go"
149
+ "go"
150
+ when "Haskell"
151
+ "hs"
152
+ when "Java 6"
153
+ "java"
154
+ when "Java 7"
155
+ "java"
156
+ when "Ocaml"
157
+ "ml"
158
+ when "Delphi"
159
+ "pas"
160
+ when "FPC"
161
+ "pas"
162
+ when "Perl"
163
+ "pl"
164
+ when "PHP"
165
+ "php"
166
+ when "Python 2"
167
+ "py"
168
+ when "Python 3"
169
+ "py"
170
+ when "Ruby"
171
+ "rb"
172
+ end
173
+ end
174
+ end
175
+ end
176
+ end
177
+ end
178
+
@@ -0,0 +1,7 @@
1
+ module Codeforces
2
+ module Solutions
3
+ module Downloader
4
+ VERSION = "0.0.1"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,39 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2
+ <html>
3
+ <body>
4
+ <div id="content">
5
+ <div class="datatable c5">
6
+ <table class="">
7
+ <tr>
8
+ <th class="c1">#</th>
9
+ <th class="c2">Author</th>
10
+ <th class="c1">Problem</th>
11
+ <th class="c1">Lang</th>
12
+ <th class="c3">Verdict</th>
13
+ <th class="c1">Time</th>
14
+ <th class="c1">Memory</th>
15
+ <th class="c4">Sent</th>
16
+ <th class="c4">Judged</th>
17
+ </tr>
18
+ <tr>
19
+ <td>999999999</td>
20
+ <td>Practice:<br>
21
+ <a href="/profile/sh19910711" title="Newbie sh19910711" class="rated-user user-gray">sh19910711</a></td>
22
+ <td><a title="E - Lucky Subsequence" href="/contest/146/problem/E">146E</a> - <span title="problem revision">32</span></td>
23
+ <td>GNU C++0x</td>
24
+ <td><span class='verdict-rejected'>Wrong answer on test <span class="verdict-format-judged">8</span></span></td>
25
+ <td>30 ms</td>
26
+ <td>12364 KB</td>
27
+ <td>Jan 29, 2014 4:46:56 AM</td>
28
+ <td>Jan 29, 2014 4:46:56 AM</td>
29
+ </tr>
30
+ </table>
31
+ </div>
32
+ <div class="roundbox c7">
33
+ <pre class="prettyprint c6">
34
+ this is test
35
+ </pre>
36
+ </div>
37
+ </div>
38
+ </body>
39
+ </html>
@@ -0,0 +1,1621 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+
3
+ <html>
4
+ <body>
5
+ <a href="test">test</a>
6
+ <div id="body">
7
+ <div id="content" class="content-with-sidebar">
8
+ <div class="second-level-menu">
9
+ <ul class="second-level-menu-list">
10
+ <li><a href="/profile/sh19910711">sh19910711</a></li>
11
+
12
+ <li><a href="/blog/sh19910711">Blog</a></li>
13
+
14
+ <li><a href="/teams/with/sh19910711">Teams</a></li>
15
+
16
+ <li class="current"><a href=
17
+ "/submissions/sh19910711">Submissions</a></li>
18
+
19
+ <li><a href="/usertalk/with/sh19910711">Talks</a></li>
20
+
21
+ <li><a href="/contests/with/sh19910711">Contests</a></li>
22
+ </ul>
23
+ </div>
24
+
25
+ <div style=
26
+ "margin:0 auto;text-align:center;padding:1.5em 0 0.5em 0;font-size:1.25em;">
27
+ sh19910711 submissions
28
+ </div>
29
+
30
+ <div class="datatable" style=
31
+ "background-color: #E1E1E1;padding-bottom:3px;">
32
+ <div class="lt">
33
+ &nbsp;
34
+ </div>
35
+
36
+ <div class="rt">
37
+ &nbsp;
38
+ </div>
39
+
40
+ <div class="lb">
41
+ &nbsp;
42
+ </div>
43
+
44
+ <div class="rb">
45
+ &nbsp;
46
+ </div>
47
+
48
+ <div style=
49
+ "padding: 4px 0 0 6px;font-size:1em;position:relative;">
50
+ sh19910711 submissions
51
+
52
+ <div style="position:absolute;right:0.25em;top:0.35em;">
53
+ <img class="closed" src=
54
+ "http://worker.codeforces.ru/static/images/icons/control.png">
55
+ <span class="filter" style="display:none;"><img class=
56
+ "opened" src=
57
+ "http://worker.codeforces.ru/static/images/icons/control-270.png">
58
+ <input style=
59
+ "position:relative;bottom:2px;border:1px solid #aaa;height:17px;font-size:13px;">
60
+ </span>
61
+ </div>
62
+ </div>
63
+
64
+ <div style=
65
+ "background-color: white;margin:0.3em 3px 0 3px;position:relative;">
66
+ <div class="ilt">
67
+ &nbsp;
68
+ </div>
69
+
70
+ <div class="irt">
71
+ &nbsp;
72
+ </div>
73
+
74
+ <table class="status-frame-datatable">
75
+ <tr class="first-row">
76
+ <th style="width:6em;">#</th>
77
+
78
+ <th>When</th>
79
+
80
+ <th style="text-align:left;">Who</th>
81
+
82
+ <th>Problem</th>
83
+
84
+ <th>Lang</th>
85
+
86
+ <th>Verdict</th>
87
+
88
+ <th>Time</th>
89
+
90
+ <th>Memory</th>
91
+ </tr>
92
+
93
+ <tr data-submission-id="5857785">
94
+ <td><a class="view-source" title="Source" href="#"
95
+ submissionid="5857785">5857785</a></td>
96
+
97
+ <td class="status-small">Jan 31, 2014 8:01:13 PM</td>
98
+
99
+ <td class="status-party-cell" data-participantid=
100
+ "1164950"><a href="/profile/sh19910711" title=
101
+ "Newbie sh19910711" class=
102
+ "rated-user user-gray">sh19910711</a></td>
103
+
104
+ <td class="status-small" data-problemid="1042">
105
+ <a href="/problemset/problem/166/D">166D - Shoe
106
+ Store</a></td>
107
+
108
+ <td>GNU C++0x</td>
109
+
110
+ <td class=
111
+ "status-cell status-small status-verdict-cell"
112
+ submissionid="5857785"><span class=
113
+ 'verdict-rejected'>Wrong answer on test <span class=
114
+ "verdict-format-judged">12</span></span></td>
115
+
116
+ <td class="time-consumed-cell">92 ms</td>
117
+
118
+ <td class="memory-consumed-cell">21900 KB</td>
119
+ </tr>
120
+
121
+ <tr data-submission-id="5857734">
122
+ <td><a class="view-source" title="Source" href="#"
123
+ submissionid="5857734">5857734</a></td>
124
+
125
+ <td class="status-small">Jan 31, 2014 7:52:05 PM</td>
126
+
127
+ <td class="status-party-cell" data-participantid=
128
+ "1164950"><a href="/profile/sh19910711" title=
129
+ "Newbie sh19910711" class=
130
+ "rated-user user-gray">sh19910711</a></td>
131
+
132
+ <td class="status-small" data-problemid="1042">
133
+ <a href="/problemset/problem/166/D">166D - Shoe
134
+ Store</a></td>
135
+
136
+ <td>GNU C++0x</td>
137
+
138
+ <td class=
139
+ "status-cell status-small status-verdict-cell"
140
+ submissionid="5857734"><span class=
141
+ 'verdict-rejected'>Wrong answer on test <span class=
142
+ "verdict-format-judged">8</span></span></td>
143
+
144
+ <td class="time-consumed-cell">62 ms</td>
145
+
146
+ <td class="memory-consumed-cell">19800 KB</td>
147
+ </tr>
148
+
149
+ <tr data-submission-id="5856674">
150
+ <td><a class="view-source" title="Source" href="#"
151
+ submissionid="5856674">5856674</a></td>
152
+
153
+ <td class="status-small">Jan 31, 2014 5:16:47 PM</td>
154
+
155
+ <td class="status-party-cell" data-participantid=
156
+ "487755"><a href="/profile/sh19910711" title=
157
+ "Newbie sh19910711" class=
158
+ "rated-user user-gray">sh19910711</a></td>
159
+
160
+ <td class="status-small" data-problemid="1016">
161
+ <a href="/problemset/problem/165/E">165E - Compatible
162
+ Numbers</a></td>
163
+
164
+ <td>GNU C++0x</td>
165
+
166
+ <td class=
167
+ "status-cell status-small status-verdict-cell"
168
+ submissionid="5856674"><span class=
169
+ 'verdict-accepted'>Accepted</span></td>
170
+
171
+ <td class="time-consumed-cell">872 ms</td>
172
+
173
+ <td class="memory-consumed-cell">32300 KB</td>
174
+ </tr>
175
+
176
+ <tr data-submission-id="5856492">
177
+ <td><a class="view-source" title="Source" href="#"
178
+ submissionid="5856492">5856492</a></td>
179
+
180
+ <td class="status-small">Jan 31, 2014 4:52:18 PM</td>
181
+
182
+ <td class="status-party-cell" data-participantid=
183
+ "487755"><a href="/profile/sh19910711" title=
184
+ "Newbie sh19910711" class=
185
+ "rated-user user-gray">sh19910711</a></td>
186
+
187
+ <td class="status-small" data-problemid="1016">
188
+ <a href="/problemset/problem/165/E">165E - Compatible
189
+ Numbers</a></td>
190
+
191
+ <td>GNU C++0x</td>
192
+
193
+ <td class=
194
+ "status-cell status-small status-verdict-cell"
195
+ submissionid="5856492"><span class=
196
+ 'verdict-rejected'>Time limit exceeded on test
197
+ <span class=
198
+ "verdict-format-judged">22</span></span></td>
199
+
200
+ <td class="time-consumed-cell">4000 ms</td>
201
+
202
+ <td class="memory-consumed-cell">15700 KB</td>
203
+ </tr>
204
+
205
+ <tr data-submission-id="5856466">
206
+ <td><a class="view-source" title="Source" href="#"
207
+ submissionid="5856466">5856466</a></td>
208
+
209
+ <td class="status-small">Jan 31, 2014 4:49:16 PM</td>
210
+
211
+ <td class="status-party-cell" data-participantid=
212
+ "487755"><a href="/profile/sh19910711" title=
213
+ "Newbie sh19910711" class=
214
+ "rated-user user-gray">sh19910711</a></td>
215
+
216
+ <td class="status-small" data-problemid="1016">
217
+ <a href="/problemset/problem/165/E">165E - Compatible
218
+ Numbers</a></td>
219
+
220
+ <td>GNU C++0x</td>
221
+
222
+ <td class=
223
+ "status-cell status-small status-verdict-cell"
224
+ submissionid="5856466"><span class=
225
+ 'verdict-rejected'>Time limit exceeded on test
226
+ <span class=
227
+ "verdict-format-judged">22</span></span></td>
228
+
229
+ <td class="time-consumed-cell">4000 ms</td>
230
+
231
+ <td class="memory-consumed-cell">15700 KB</td>
232
+ </tr>
233
+
234
+ <tr data-submission-id="5856439">
235
+ <td><a class="view-source" title="Source" href="#"
236
+ submissionid="5856439">5856439</a></td>
237
+
238
+ <td class="status-small">Jan 31, 2014 4:44:47 PM</td>
239
+
240
+ <td class="status-party-cell" data-participantid=
241
+ "487755"><a href="/profile/sh19910711" title=
242
+ "Newbie sh19910711" class=
243
+ "rated-user user-gray">sh19910711</a></td>
244
+
245
+ <td class="status-small" data-problemid="1016">
246
+ <a href="/problemset/problem/165/E">165E - Compatible
247
+ Numbers</a></td>
248
+
249
+ <td>GNU C++0x</td>
250
+
251
+ <td class=
252
+ "status-cell status-small status-verdict-cell"
253
+ submissionid="5856439"><span class=
254
+ 'verdict-rejected'>Time limit exceeded on test
255
+ <span class=
256
+ "verdict-format-judged">22</span></span></td>
257
+
258
+ <td class="time-consumed-cell">4000 ms</td>
259
+
260
+ <td class="memory-consumed-cell">15700 KB</td>
261
+ </tr>
262
+
263
+ <tr data-submission-id="5856435">
264
+ <td><a class="view-source" title="Source" href="#"
265
+ submissionid="5856435">5856435</a></td>
266
+
267
+ <td class="status-small">Jan 31, 2014 4:44:15 PM</td>
268
+
269
+ <td class="status-party-cell" data-participantid=
270
+ "487755"><a href="/profile/sh19910711" title=
271
+ "Newbie sh19910711" class=
272
+ "rated-user user-gray">sh19910711</a></td>
273
+
274
+ <td class="status-small" data-problemid="1016">
275
+ <a href="/problemset/problem/165/E">165E - Compatible
276
+ Numbers</a></td>
277
+
278
+ <td>GNU C++0x</td>
279
+
280
+ <td class=
281
+ "status-cell status-small status-verdict-cell"
282
+ submissionid="5856435"><span class=
283
+ 'verdict-rejected'>Wrong answer on test <span class=
284
+ "verdict-format-judged">12</span></span></td>
285
+
286
+ <td class="time-consumed-cell">3650 ms</td>
287
+
288
+ <td class="memory-consumed-cell">15700 KB</td>
289
+ </tr>
290
+
291
+ <tr data-submission-id="5856304">
292
+ <td><a class="view-source" title="Source" href="#"
293
+ submissionid="5856304">5856304</a></td>
294
+
295
+ <td class="status-small">Jan 31, 2014 4:26:18 PM</td>
296
+
297
+ <td class="status-party-cell" data-participantid=
298
+ "487755"><a href="/profile/sh19910711" title=
299
+ "Newbie sh19910711" class=
300
+ "rated-user user-gray">sh19910711</a></td>
301
+
302
+ <td class="status-small" data-problemid="1016">
303
+ <a href="/problemset/problem/165/E">165E - Compatible
304
+ Numbers</a></td>
305
+
306
+ <td>GNU C++0x</td>
307
+
308
+ <td class=
309
+ "status-cell status-small status-verdict-cell"
310
+ submissionid="5856304"><span class=
311
+ 'verdict-rejected'>Time limit exceeded on test
312
+ <span class=
313
+ "verdict-format-judged">15</span></span></td>
314
+
315
+ <td class="time-consumed-cell">4000 ms</td>
316
+
317
+ <td class="memory-consumed-cell">43600 KB</td>
318
+ </tr>
319
+
320
+ <tr data-submission-id="5856292">
321
+ <td><a class="view-source" title="Source" href="#"
322
+ submissionid="5856292">5856292</a></td>
323
+
324
+ <td class="status-small">Jan 31, 2014 4:24:44 PM</td>
325
+
326
+ <td class="status-party-cell" data-participantid=
327
+ "487755"><a href="/profile/sh19910711" title=
328
+ "Newbie sh19910711" class=
329
+ "rated-user user-gray">sh19910711</a></td>
330
+
331
+ <td class="status-small" data-problemid="1016">
332
+ <a href="/problemset/problem/165/E">165E - Compatible
333
+ Numbers</a></td>
334
+
335
+ <td>GNU C++0x</td>
336
+
337
+ <td class=
338
+ "status-cell status-small status-verdict-cell"
339
+ submissionid="5856292"><span class=
340
+ 'verdict-rejected'>Time limit exceeded on test
341
+ <span class=
342
+ "verdict-format-judged">22</span></span></td>
343
+
344
+ <td class="time-consumed-cell">4000 ms</td>
345
+
346
+ <td class="memory-consumed-cell">15700 KB</td>
347
+ </tr>
348
+
349
+ <tr data-submission-id="5856276">
350
+ <td><a class="view-source" title="Source" href="#"
351
+ submissionid="5856276">5856276</a></td>
352
+
353
+ <td class="status-small">Jan 31, 2014 4:22:56 PM</td>
354
+
355
+ <td class="status-party-cell" data-participantid=
356
+ "487755"><a href="/profile/sh19910711" title=
357
+ "Newbie sh19910711" class=
358
+ "rated-user user-gray">sh19910711</a></td>
359
+
360
+ <td class="status-small" data-problemid="1016">
361
+ <a href="/problemset/problem/165/E">165E - Compatible
362
+ Numbers</a></td>
363
+
364
+ <td>GNU C++0x</td>
365
+
366
+ <td class=
367
+ "status-cell status-small status-verdict-cell"
368
+ submissionid="5856276"><span class=
369
+ 'verdict-rejected'>Time limit exceeded on test
370
+ <span class=
371
+ "verdict-format-judged">22</span></span></td>
372
+
373
+ <td class="time-consumed-cell">4000 ms</td>
374
+
375
+ <td class="memory-consumed-cell">15700 KB</td>
376
+ </tr>
377
+
378
+ <tr data-submission-id="5856251">
379
+ <td><a class="view-source" title="Source" href="#"
380
+ submissionid="5856251">5856251</a></td>
381
+
382
+ <td class="status-small">Jan 31, 2014 4:19:29 PM</td>
383
+
384
+ <td class="status-party-cell" data-participantid=
385
+ "487755"><a href="/profile/sh19910711" title=
386
+ "Newbie sh19910711" class=
387
+ "rated-user user-gray">sh19910711</a></td>
388
+
389
+ <td class="status-small" data-problemid="1016">
390
+ <a href="/problemset/problem/165/E">165E - Compatible
391
+ Numbers</a></td>
392
+
393
+ <td>GNU C++0x</td>
394
+
395
+ <td class=
396
+ "status-cell status-small status-verdict-cell"
397
+ submissionid="5856251"><span class=
398
+ 'verdict-rejected'>Time limit exceeded on test
399
+ <span class=
400
+ "verdict-format-judged">22</span></span></td>
401
+
402
+ <td class="time-consumed-cell">4000 ms</td>
403
+
404
+ <td class="memory-consumed-cell">15700 KB</td>
405
+ </tr>
406
+
407
+ <tr data-submission-id="5856243">
408
+ <td><a class="view-source" title="Source" href="#"
409
+ submissionid="5856243">5856243</a></td>
410
+
411
+ <td class="status-small">Jan 31, 2014 4:18:00 PM</td>
412
+
413
+ <td class="status-party-cell" data-participantid=
414
+ "487755"><a href="/profile/sh19910711" title=
415
+ "Newbie sh19910711" class=
416
+ "rated-user user-gray">sh19910711</a></td>
417
+
418
+ <td class="status-small" data-problemid="1016">
419
+ <a href="/problemset/problem/165/E">165E - Compatible
420
+ Numbers</a></td>
421
+
422
+ <td>GNU C++0x</td>
423
+
424
+ <td class=
425
+ "status-cell status-small status-verdict-cell"
426
+ submissionid="5856243"><span class=
427
+ 'verdict-rejected'>Time limit exceeded on test
428
+ <span class=
429
+ "verdict-format-judged">12</span></span></td>
430
+
431
+ <td class="time-consumed-cell">4000 ms</td>
432
+
433
+ <td class="memory-consumed-cell">31300 KB</td>
434
+ </tr>
435
+
436
+ <tr data-submission-id="5856237">
437
+ <td><a class="view-source" title="Source" href="#"
438
+ submissionid="5856237">5856237</a></td>
439
+
440
+ <td class="status-small">Jan 31, 2014 4:16:15 PM</td>
441
+
442
+ <td class="status-party-cell" data-participantid=
443
+ "487755"><a href="/profile/sh19910711" title=
444
+ "Newbie sh19910711" class=
445
+ "rated-user user-gray">sh19910711</a></td>
446
+
447
+ <td class="status-small" data-problemid="1016">
448
+ <a href="/problemset/problem/165/E">165E - Compatible
449
+ Numbers</a></td>
450
+
451
+ <td>GNU C++0x</td>
452
+
453
+ <td class=
454
+ "status-cell status-small status-verdict-cell"
455
+ submissionid="5856237"><span class=
456
+ 'verdict-rejected'>Time limit exceeded on test
457
+ <span class=
458
+ "verdict-format-judged">12</span></span></td>
459
+
460
+ <td class="time-consumed-cell">4000 ms</td>
461
+
462
+ <td class="memory-consumed-cell">31300 KB</td>
463
+ </tr>
464
+
465
+ <tr data-submission-id="5856235">
466
+ <td><a class="view-source" title="Source" href="#"
467
+ submissionid="5856235">5856235</a></td>
468
+
469
+ <td class="status-small">Jan 31, 2014 4:16:00 PM</td>
470
+
471
+ <td class="status-party-cell" data-participantid=
472
+ "487755"><a href="/profile/sh19910711" title=
473
+ "Newbie sh19910711" class=
474
+ "rated-user user-gray">sh19910711</a></td>
475
+
476
+ <td class="status-small" data-problemid="1016">
477
+ <a href="/problemset/problem/165/E">165E - Compatible
478
+ Numbers</a></td>
479
+
480
+ <td>GNU C++</td>
481
+
482
+ <td class=
483
+ "status-cell status-small status-verdict-cell"
484
+ submissionid="5856235"><a href="#" submissionid=
485
+ "5856235" class="information-box-link">Compilation
486
+ error</a></td>
487
+
488
+ <td class="time-consumed-cell">0 ms</td>
489
+
490
+ <td class="memory-consumed-cell">0 KB</td>
491
+ </tr>
492
+
493
+ <tr data-submission-id="5850421">
494
+ <td><a class="view-source" title="Source" href="#"
495
+ submissionid="5850421">5850421</a></td>
496
+
497
+ <td class="status-small">Jan 30, 2014 9:38:23 PM</td>
498
+
499
+ <td class="status-party-cell" data-participantid=
500
+ "2005565"><a href="/profile/sh19910711" title=
501
+ "Pupil sh19910711" class=
502
+ "rated-user user-green">sh19910711</a></td>
503
+
504
+ <td class="status-small" data-problemid="6209">
505
+ <a href="/problemset/problem/387/D">387D - George and
506
+ Interesting Graph</a></td>
507
+
508
+ <td>GNU C++0x</td>
509
+
510
+ <td class=
511
+ "status-cell status-small status-verdict-cell"
512
+ submissionid="5850421"><span class=
513
+ 'verdict-rejected'>Wrong answer on pretest
514
+ <span class=
515
+ "verdict-format-judged">4</span></span></td>
516
+
517
+ <td class="time-consumed-cell">31 ms</td>
518
+
519
+ <td class="memory-consumed-cell">300 KB</td>
520
+ </tr>
521
+
522
+ <tr data-submission-id="5850128">
523
+ <td><a class="view-source" title="Source" href="#"
524
+ submissionid="5850128">5850128</a></td>
525
+
526
+ <td class="status-small">Jan 30, 2014 9:32:18 PM</td>
527
+
528
+ <td class="status-party-cell" data-participantid=
529
+ "2005565"><a href="/profile/sh19910711" title=
530
+ "Pupil sh19910711" class=
531
+ "rated-user user-green">sh19910711</a></td>
532
+
533
+ <td class="status-small" data-problemid="6208">
534
+ <a href="/problemset/problem/387/C">387C - George and
535
+ Number</a></td>
536
+
537
+ <td>GNU C++0x</td>
538
+
539
+ <td class=
540
+ "status-cell status-small status-verdict-cell"
541
+ submissionid="5850128"><span class=
542
+ 'verdict-rejected'>Time limit exceeded on pretest
543
+ <span class=
544
+ "verdict-format-judged">10</span></span></td>
545
+
546
+ <td class="time-consumed-cell">1000 ms</td>
547
+
548
+ <td class="memory-consumed-cell">3500 KB</td>
549
+ </tr>
550
+
551
+ <tr data-submission-id="5847600">
552
+ <td><a class="view-source" title="Source" href="#"
553
+ submissionid="5847600">5847600</a></td>
554
+
555
+ <td class="status-small">Jan 30, 2014 8:47:33 PM</td>
556
+
557
+ <td class="status-party-cell" data-participantid=
558
+ "2005565"><a href="/profile/sh19910711" title=
559
+ "Pupil sh19910711" class=
560
+ "rated-user user-green">sh19910711</a></td>
561
+
562
+ <td class="status-small" data-problemid="6209">
563
+ <a href="/problemset/problem/387/D">387D - George and
564
+ Interesting Graph</a></td>
565
+
566
+ <td>GNU C++0x</td>
567
+
568
+ <td class=
569
+ "status-cell status-small status-verdict-cell"
570
+ submissionid="5847600"><span class=
571
+ 'verdict-rejected'>Wrong answer on pretest
572
+ <span class=
573
+ "verdict-format-judged">4</span></span></td>
574
+
575
+ <td class="time-consumed-cell">15 ms</td>
576
+
577
+ <td class="memory-consumed-cell">300 KB</td>
578
+ </tr>
579
+
580
+ <tr data-submission-id="5846647">
581
+ <td><a class="view-source" title="Source" href="#"
582
+ submissionid="5846647">5846647</a></td>
583
+
584
+ <td class="status-small">Jan 30, 2014 8:34:00 PM</td>
585
+
586
+ <td class="status-party-cell" data-participantid=
587
+ "2005565"><a href="/profile/sh19910711" title=
588
+ "Pupil sh19910711" class=
589
+ "rated-user user-green">sh19910711</a></td>
590
+
591
+ <td class="status-small" data-problemid="6209">
592
+ <a href="/problemset/problem/387/D">387D - George and
593
+ Interesting Graph</a></td>
594
+
595
+ <td>GNU C++0x</td>
596
+
597
+ <td class=
598
+ "status-cell status-small status-verdict-cell"
599
+ submissionid="5846647"><span class=
600
+ 'verdict-rejected'>Wrong answer on pretest
601
+ <span class=
602
+ "verdict-format-judged">4</span></span></td>
603
+
604
+ <td class="time-consumed-cell">31 ms</td>
605
+
606
+ <td class="memory-consumed-cell">300 KB</td>
607
+ </tr>
608
+
609
+ <tr data-submission-id="5837917">
610
+ <td><a class="view-source" title="Source" href="#"
611
+ submissionid="5837917">5837917</a></td>
612
+
613
+ <td class="status-small">Jan 30, 2014 3:02:50 PM</td>
614
+
615
+ <td class="status-party-cell" data-participantid=
616
+ "430164"><a href="/profile/sh19910711" title=
617
+ "Newbie sh19910711" class=
618
+ "rated-user user-gray">sh19910711</a></td>
619
+
620
+ <td class="status-small" data-problemid="978">
621
+ <a href="/problemset/problem/160/E">160E - Buses and
622
+ People</a></td>
623
+
624
+ <td>GNU C++0x</td>
625
+
626
+ <td class=
627
+ "status-cell status-small status-verdict-cell"
628
+ submissionid="5837917"><span class=
629
+ 'verdict-accepted'>Accepted</span></td>
630
+
631
+ <td class="time-consumed-cell">3118 ms</td>
632
+
633
+ <td class="memory-consumed-cell">93500 KB</td>
634
+ </tr>
635
+
636
+ <tr data-submission-id="5837892">
637
+ <td><a class="view-source" title="Source" href="#"
638
+ submissionid="5837892">5837892</a></td>
639
+
640
+ <td class="status-small">Jan 30, 2014 2:57:52 PM</td>
641
+
642
+ <td class="status-party-cell" data-participantid=
643
+ "430164"><a href="/profile/sh19910711" title=
644
+ "Newbie sh19910711" class=
645
+ "rated-user user-gray">sh19910711</a></td>
646
+
647
+ <td class="status-small" data-problemid="978">
648
+ <a href="/problemset/problem/160/E">160E - Buses and
649
+ People</a></td>
650
+
651
+ <td>GNU C++0x</td>
652
+
653
+ <td class=
654
+ "status-cell status-small status-verdict-cell"
655
+ submissionid="5837892"><span class=
656
+ 'verdict-accepted'>Accepted</span></td>
657
+
658
+ <td class="time-consumed-cell">3024 ms</td>
659
+
660
+ <td class="memory-consumed-cell">93500 KB</td>
661
+ </tr>
662
+
663
+ <tr data-submission-id="5837812">
664
+ <td><a class="view-source" title="Source" href="#"
665
+ submissionid="5837812">5837812</a></td>
666
+
667
+ <td class="status-small">Jan 30, 2014 2:43:51 PM</td>
668
+
669
+ <td class="status-party-cell" data-participantid=
670
+ "430164"><a href="/profile/sh19910711" title=
671
+ "Newbie sh19910711" class=
672
+ "rated-user user-gray">sh19910711</a></td>
673
+
674
+ <td class="status-small" data-problemid="978">
675
+ <a href="/problemset/problem/160/E">160E - Buses and
676
+ People</a></td>
677
+
678
+ <td>GNU C++0x</td>
679
+
680
+ <td class=
681
+ "status-cell status-small status-verdict-cell"
682
+ submissionid="5837812"><span class=
683
+ 'verdict-accepted'>Accepted</span></td>
684
+
685
+ <td class="time-consumed-cell">3026 ms</td>
686
+
687
+ <td class="memory-consumed-cell">92000 KB</td>
688
+ </tr>
689
+
690
+ <tr data-submission-id="5837796">
691
+ <td><a class="view-source" title="Source" href="#"
692
+ submissionid="5837796">5837796</a></td>
693
+
694
+ <td class="status-small">Jan 30, 2014 2:39:02 PM</td>
695
+
696
+ <td class="status-party-cell" data-participantid=
697
+ "430164"><a href="/profile/sh19910711" title=
698
+ "Newbie sh19910711" class=
699
+ "rated-user user-gray">sh19910711</a></td>
700
+
701
+ <td class="status-small" data-problemid="978">
702
+ <a href="/problemset/problem/160/E">160E - Buses and
703
+ People</a></td>
704
+
705
+ <td>GNU C++0x</td>
706
+
707
+ <td class=
708
+ "status-cell status-small status-verdict-cell"
709
+ submissionid="5837796"><span class=
710
+ 'verdict-rejected'>Time limit exceeded on test
711
+ <span class=
712
+ "verdict-format-judged">8</span></span></td>
713
+
714
+ <td class="time-consumed-cell">4000 ms</td>
715
+
716
+ <td class="memory-consumed-cell">68200 KB</td>
717
+ </tr>
718
+
719
+ <tr data-submission-id="5837778">
720
+ <td><a class="view-source" title="Source" href="#"
721
+ submissionid="5837778">5837778</a></td>
722
+
723
+ <td class="status-small">Jan 30, 2014 2:35:45 PM</td>
724
+
725
+ <td class="status-party-cell" data-participantid=
726
+ "430164"><a href="/profile/sh19910711" title=
727
+ "Newbie sh19910711" class=
728
+ "rated-user user-gray">sh19910711</a></td>
729
+
730
+ <td class="status-small" data-problemid="978">
731
+ <a href="/problemset/problem/160/E">160E - Buses and
732
+ People</a></td>
733
+
734
+ <td>GNU C++0x</td>
735
+
736
+ <td class=
737
+ "status-cell status-small status-verdict-cell"
738
+ submissionid="5837778"><span class=
739
+ 'verdict-rejected'>Runtime error on test <span class=
740
+ "verdict-format-judged">8</span></span></td>
741
+
742
+ <td class="time-consumed-cell">996 ms</td>
743
+
744
+ <td class="memory-consumed-cell">48800 KB</td>
745
+ </tr>
746
+
747
+ <tr data-submission-id="5837764">
748
+ <td><a class="view-source" title="Source" href="#"
749
+ submissionid="5837764">5837764</a></td>
750
+
751
+ <td class="status-small">Jan 30, 2014 2:33:51 PM</td>
752
+
753
+ <td class="status-party-cell" data-participantid=
754
+ "430164"><a href="/profile/sh19910711" title=
755
+ "Newbie sh19910711" class=
756
+ "rated-user user-gray">sh19910711</a></td>
757
+
758
+ <td class="status-small" data-problemid="978">
759
+ <a href="/problemset/problem/160/E">160E - Buses and
760
+ People</a></td>
761
+
762
+ <td>GNU C++0x</td>
763
+
764
+ <td class=
765
+ "status-cell status-small status-verdict-cell"
766
+ submissionid="5837764"><span class=
767
+ 'verdict-rejected'>Runtime error on test <span class=
768
+ "verdict-format-judged">8</span></span></td>
769
+
770
+ <td class="time-consumed-cell">966 ms</td>
771
+
772
+ <td class="memory-consumed-cell">46400 KB</td>
773
+ </tr>
774
+
775
+ <tr data-submission-id="5837757">
776
+ <td><a class="view-source" title="Source" href="#"
777
+ submissionid="5837757">5837757</a></td>
778
+
779
+ <td class="status-small">Jan 30, 2014 2:32:57 PM</td>
780
+
781
+ <td class="status-party-cell" data-participantid=
782
+ "430164"><a href="/profile/sh19910711" title=
783
+ "Newbie sh19910711" class=
784
+ "rated-user user-gray">sh19910711</a></td>
785
+
786
+ <td class="status-small" data-problemid="978">
787
+ <a href="/problemset/problem/160/E">160E - Buses and
788
+ People</a></td>
789
+
790
+ <td>GNU C++0x</td>
791
+
792
+ <td class=
793
+ "status-cell status-small status-verdict-cell"
794
+ submissionid="5837757"><span class=
795
+ 'verdict-rejected'>Time limit exceeded on test
796
+ <span class=
797
+ "verdict-format-judged">8</span></span></td>
798
+
799
+ <td class="time-consumed-cell">4000 ms</td>
800
+
801
+ <td class="memory-consumed-cell">69500 KB</td>
802
+ </tr>
803
+
804
+ <tr data-submission-id="5837747">
805
+ <td><a class="view-source" title="Source" href="#"
806
+ submissionid="5837747">5837747</a></td>
807
+
808
+ <td class="status-small">Jan 30, 2014 2:31:56 PM</td>
809
+
810
+ <td class="status-party-cell" data-participantid=
811
+ "430164"><a href="/profile/sh19910711" title=
812
+ "Newbie sh19910711" class=
813
+ "rated-user user-gray">sh19910711</a></td>
814
+
815
+ <td class="status-small" data-problemid="978">
816
+ <a href="/problemset/problem/160/E">160E - Buses and
817
+ People</a></td>
818
+
819
+ <td>GNU C++0x</td>
820
+
821
+ <td class=
822
+ "status-cell status-small status-verdict-cell"
823
+ submissionid="5837747"><span class=
824
+ 'verdict-rejected'>Time limit exceeded on test
825
+ <span class=
826
+ "verdict-format-judged">8</span></span></td>
827
+
828
+ <td class="time-consumed-cell">4000 ms</td>
829
+
830
+ <td class="memory-consumed-cell">69400 KB</td>
831
+ </tr>
832
+
833
+ <tr data-submission-id="5837742">
834
+ <td><a class="view-source" title="Source" href="#"
835
+ submissionid="5837742">5837742</a></td>
836
+
837
+ <td class="status-small">Jan 30, 2014 2:30:50 PM</td>
838
+
839
+ <td class="status-party-cell" data-participantid=
840
+ "430164"><a href="/profile/sh19910711" title=
841
+ "Newbie sh19910711" class=
842
+ "rated-user user-gray">sh19910711</a></td>
843
+
844
+ <td class="status-small" data-problemid="978">
845
+ <a href="/problemset/problem/160/E">160E - Buses and
846
+ People</a></td>
847
+
848
+ <td>GNU C++0x</td>
849
+
850
+ <td class=
851
+ "status-cell status-small status-verdict-cell"
852
+ submissionid="5837742"><span class=
853
+ 'verdict-rejected'>Runtime error on test <span class=
854
+ "verdict-format-judged">8</span></span></td>
855
+
856
+ <td class="time-consumed-cell">934 ms</td>
857
+
858
+ <td class="memory-consumed-cell">44800 KB</td>
859
+ </tr>
860
+
861
+ <tr data-submission-id="5837735">
862
+ <td><a class="view-source" title="Source" href="#"
863
+ submissionid="5837735">5837735</a></td>
864
+
865
+ <td class="status-small">Jan 30, 2014 2:29:52 PM</td>
866
+
867
+ <td class="status-party-cell" data-participantid=
868
+ "430164"><a href="/profile/sh19910711" title=
869
+ "Newbie sh19910711" class=
870
+ "rated-user user-gray">sh19910711</a></td>
871
+
872
+ <td class="status-small" data-problemid="978">
873
+ <a href="/problemset/problem/160/E">160E - Buses and
874
+ People</a></td>
875
+
876
+ <td>GNU C++0x</td>
877
+
878
+ <td class=
879
+ "status-cell status-small status-verdict-cell"
880
+ submissionid="5837735"><span class=
881
+ 'verdict-rejected'>Wrong answer on test <span class=
882
+ "verdict-format-judged">1</span></span></td>
883
+
884
+ <td class="time-consumed-cell">62 ms</td>
885
+
886
+ <td class="memory-consumed-cell">19500 KB</td>
887
+ </tr>
888
+
889
+ <tr data-submission-id="5837692">
890
+ <td><a class="view-source" title="Source" href="#"
891
+ submissionid="5837692">5837692</a></td>
892
+
893
+ <td class="status-small">Jan 30, 2014 2:19:40 PM</td>
894
+
895
+ <td class="status-party-cell" data-participantid=
896
+ "430164"><a href="/profile/sh19910711" title=
897
+ "Newbie sh19910711" class=
898
+ "rated-user user-gray">sh19910711</a></td>
899
+
900
+ <td class="status-small" data-problemid="978">
901
+ <a href="/problemset/problem/160/E">160E - Buses and
902
+ People</a></td>
903
+
904
+ <td>GNU C++0x</td>
905
+
906
+ <td class=
907
+ "status-cell status-small status-verdict-cell"
908
+ submissionid="5837692"><span class=
909
+ 'verdict-rejected'>Wrong answer on test <span class=
910
+ "verdict-format-judged">3</span></span></td>
911
+
912
+ <td class="time-consumed-cell">60 ms</td>
913
+
914
+ <td class="memory-consumed-cell">18900 KB</td>
915
+ </tr>
916
+
917
+ <tr data-submission-id="5836726">
918
+ <td><a class="view-source" title="Source" href="#"
919
+ submissionid="5836726">5836726</a></td>
920
+
921
+ <td class="status-small">Jan 30, 2014 11:18:20
922
+ AM</td>
923
+
924
+ <td class="status-party-cell" data-participantid=
925
+ "420946"><a href="/profile/sh19910711" title=
926
+ "Newbie sh19910711" class=
927
+ "rated-user user-gray">sh19910711</a></td>
928
+
929
+ <td class="status-small" data-problemid="968">
930
+ <a href="/problemset/problem/157/E">157E -
931
+ Cipher</a></td>
932
+
933
+ <td>GNU C++0x</td>
934
+
935
+ <td class=
936
+ "status-cell status-small status-verdict-cell"
937
+ submissionid="5836726"><span class=
938
+ 'verdict-accepted'>Accepted</span></td>
939
+
940
+ <td class="time-consumed-cell">248 ms</td>
941
+
942
+ <td class="memory-consumed-cell">2500 KB</td>
943
+ </tr>
944
+
945
+ <tr data-submission-id="5834475">
946
+ <td><a class="view-source" title="Source" href="#"
947
+ submissionid="5834475">5834475</a></td>
948
+
949
+ <td class="status-small">Jan 29, 2014 11:36:10
950
+ PM</td>
951
+
952
+ <td class="status-party-cell" data-participantid=
953
+ "384328"><a href="/profile/sh19910711" title=
954
+ "Newbie sh19910711" class=
955
+ "rated-user user-gray">sh19910711</a></td>
956
+
957
+ <td class="status-small" data-problemid="897">
958
+ <a href="/problemset/problem/149/E">149E - Martian
959
+ Strings</a></td>
960
+
961
+ <td>GNU C++0x</td>
962
+
963
+ <td class=
964
+ "status-cell status-small status-verdict-cell"
965
+ submissionid="5834475"><span class=
966
+ 'verdict-rejected'>Wrong answer on test <span class=
967
+ "verdict-format-judged">2</span></span></td>
968
+
969
+ <td class="time-consumed-cell">0 ms</td>
970
+
971
+ <td class="memory-consumed-cell">100 KB</td>
972
+ </tr>
973
+
974
+ <tr data-submission-id="5834464">
975
+ <td><a class="view-source" title="Source" href="#"
976
+ submissionid="5834464">5834464</a></td>
977
+
978
+ <td class="status-small">Jan 29, 2014 11:32:57
979
+ PM</td>
980
+
981
+ <td class="status-party-cell" data-participantid=
982
+ "384328"><a href="/profile/sh19910711" title=
983
+ "Newbie sh19910711" class=
984
+ "rated-user user-gray">sh19910711</a></td>
985
+
986
+ <td class="status-small" data-problemid="897">
987
+ <a href="/problemset/problem/149/E">149E - Martian
988
+ Strings</a></td>
989
+
990
+ <td>GNU C++0x</td>
991
+
992
+ <td class=
993
+ "status-cell status-small status-verdict-cell"
994
+ submissionid="5834464"><span class=
995
+ 'verdict-rejected'>Wrong answer on test <span class=
996
+ "verdict-format-judged">1</span></span></td>
997
+
998
+ <td class="time-consumed-cell">0 ms</td>
999
+
1000
+ <td class="memory-consumed-cell">0 KB</td>
1001
+ </tr>
1002
+
1003
+ <tr data-submission-id="5834456">
1004
+ <td><a class="view-source" title="Source" href="#"
1005
+ submissionid="5834456">5834456</a></td>
1006
+
1007
+ <td class="status-small">Jan 29, 2014 11:31:17
1008
+ PM</td>
1009
+
1010
+ <td class="status-party-cell" data-participantid=
1011
+ "384328"><a href="/profile/sh19910711" title=
1012
+ "Newbie sh19910711" class=
1013
+ "rated-user user-gray">sh19910711</a></td>
1014
+
1015
+ <td class="status-small" data-problemid="897">
1016
+ <a href="/problemset/problem/149/E">149E - Martian
1017
+ Strings</a></td>
1018
+
1019
+ <td>GNU C++0x</td>
1020
+
1021
+ <td class=
1022
+ "status-cell status-small status-verdict-cell"
1023
+ submissionid="5834456"><a href="#" submissionid=
1024
+ "5834456" class="information-box-link">Compilation
1025
+ error</a></td>
1026
+
1027
+ <td class="time-consumed-cell">0 ms</td>
1028
+
1029
+ <td class="memory-consumed-cell">0 KB</td>
1030
+ </tr>
1031
+
1032
+ <tr data-submission-id="5834451">
1033
+ <td><a class="view-source" title="Source" href="#"
1034
+ submissionid="5834451">5834451</a></td>
1035
+
1036
+ <td class="status-small">Jan 29, 2014 11:29:23
1037
+ PM</td>
1038
+
1039
+ <td class="status-party-cell" data-participantid=
1040
+ "384328"><a href="/profile/sh19910711" title=
1041
+ "Newbie sh19910711" class=
1042
+ "rated-user user-gray">sh19910711</a></td>
1043
+
1044
+ <td class="status-small" data-problemid="897">
1045
+ <a href="/problemset/problem/149/E">149E - Martian
1046
+ Strings</a></td>
1047
+
1048
+ <td>GNU C++0x</td>
1049
+
1050
+ <td class=
1051
+ "status-cell status-small status-verdict-cell"
1052
+ submissionid="5834451"><a href="#" submissionid=
1053
+ "5834451" class="information-box-link">Compilation
1054
+ error</a></td>
1055
+
1056
+ <td class="time-consumed-cell">0 ms</td>
1057
+
1058
+ <td class="memory-consumed-cell">0 KB</td>
1059
+ </tr>
1060
+
1061
+ <tr data-submission-id="5834444">
1062
+ <td><a class="view-source" title="Source" href="#"
1063
+ submissionid="5834444">5834444</a></td>
1064
+
1065
+ <td class="status-small">Jan 29, 2014 11:28:21
1066
+ PM</td>
1067
+
1068
+ <td class="status-party-cell" data-participantid=
1069
+ "384328"><a href="/profile/sh19910711" title=
1070
+ "Newbie sh19910711" class=
1071
+ "rated-user user-gray">sh19910711</a></td>
1072
+
1073
+ <td class="status-small" data-problemid="897">
1074
+ <a href="/problemset/problem/149/E">149E - Martian
1075
+ Strings</a></td>
1076
+
1077
+ <td>GNU C++0x</td>
1078
+
1079
+ <td class=
1080
+ "status-cell status-small status-verdict-cell"
1081
+ submissionid="5834444"><a href="#" submissionid=
1082
+ "5834444" class="information-box-link">Compilation
1083
+ error</a></td>
1084
+
1085
+ <td class="time-consumed-cell">0 ms</td>
1086
+
1087
+ <td class="memory-consumed-cell">0 KB</td>
1088
+ </tr>
1089
+
1090
+ <tr data-submission-id="5834432">
1091
+ <td><a class="view-source" title="Source" href="#"
1092
+ submissionid="5834432">5834432</a></td>
1093
+
1094
+ <td class="status-small">Jan 29, 2014 11:26:10
1095
+ PM</td>
1096
+
1097
+ <td class="status-party-cell" data-participantid=
1098
+ "384328"><a href="/profile/sh19910711" title=
1099
+ "Newbie sh19910711" class=
1100
+ "rated-user user-gray">sh19910711</a></td>
1101
+
1102
+ <td class="status-small" data-problemid="897">
1103
+ <a href="/problemset/problem/149/E">149E - Martian
1104
+ Strings</a></td>
1105
+
1106
+ <td>GNU C++0x</td>
1107
+
1108
+ <td class=
1109
+ "status-cell status-small status-verdict-cell"
1110
+ submissionid="5834432"><a href="#" submissionid=
1111
+ "5834432" class="information-box-link">Compilation
1112
+ error</a></td>
1113
+
1114
+ <td class="time-consumed-cell">0 ms</td>
1115
+
1116
+ <td class="memory-consumed-cell">0 KB</td>
1117
+ </tr>
1118
+
1119
+ <tr data-submission-id="5834428">
1120
+ <td><a class="view-source" title="Source" href="#"
1121
+ submissionid="5834428">5834428</a></td>
1122
+
1123
+ <td class="status-small">Jan 29, 2014 11:25:49
1124
+ PM</td>
1125
+
1126
+ <td class="status-party-cell" data-participantid=
1127
+ "384328"><a href="/profile/sh19910711" title=
1128
+ "Newbie sh19910711" class=
1129
+ "rated-user user-gray">sh19910711</a></td>
1130
+
1131
+ <td class="status-small" data-problemid="897">
1132
+ <a href="/problemset/problem/149/E">149E - Martian
1133
+ Strings</a></td>
1134
+
1135
+ <td>GNU C++</td>
1136
+
1137
+ <td class=
1138
+ "status-cell status-small status-verdict-cell"
1139
+ submissionid="5834428"><a href="#" submissionid=
1140
+ "5834428" class="information-box-link">Compilation
1141
+ error</a></td>
1142
+
1143
+ <td class="time-consumed-cell">0 ms</td>
1144
+
1145
+ <td class="memory-consumed-cell">0 KB</td>
1146
+ </tr>
1147
+
1148
+ <tr data-submission-id="5829026">
1149
+ <td><a class="view-source" title="Source" href="#"
1150
+ submissionid="5829026">5829026</a></td>
1151
+
1152
+ <td class="status-small">Jan 29, 2014 5:05:56 AM</td>
1153
+
1154
+ <td class="status-party-cell" data-participantid=
1155
+ "383489"><a href="/profile/sh19910711" title=
1156
+ "Newbie sh19910711" class=
1157
+ "rated-user user-gray">sh19910711</a></td>
1158
+
1159
+ <td class="status-small" data-problemid="844">
1160
+ <a href="/problemset/problem/146/E">146E - Lucky
1161
+ Subsequence</a></td>
1162
+
1163
+ <td>GNU C++0x</td>
1164
+
1165
+ <td class=
1166
+ "status-cell status-small status-verdict-cell"
1167
+ submissionid="5829026"><span class=
1168
+ 'verdict-accepted'>Accepted</span></td>
1169
+
1170
+ <td class="time-consumed-cell">124 ms</td>
1171
+
1172
+ <td class="memory-consumed-cell">12400 KB</td>
1173
+ </tr>
1174
+
1175
+ <tr data-submission-id="5829016">
1176
+ <td><a class="view-source" title="Source" href="#"
1177
+ submissionid="5829016">5829016</a></td>
1178
+
1179
+ <td class="status-small">Jan 29, 2014 5:02:57 AM</td>
1180
+
1181
+ <td class="status-party-cell" data-participantid=
1182
+ "383489"><a href="/profile/sh19910711" title=
1183
+ "Newbie sh19910711" class=
1184
+ "rated-user user-gray">sh19910711</a></td>
1185
+
1186
+ <td class="status-small" data-problemid="844">
1187
+ <a href="/problemset/problem/146/E">146E - Lucky
1188
+ Subsequence</a></td>
1189
+
1190
+ <td>GNU C++0x</td>
1191
+
1192
+ <td class=
1193
+ "status-cell status-small status-verdict-cell"
1194
+ submissionid="5829016"><span class=
1195
+ 'verdict-rejected'>Wrong answer on test <span class=
1196
+ "verdict-format-judged">46</span></span></td>
1197
+
1198
+ <td class="time-consumed-cell">156 ms</td>
1199
+
1200
+ <td class="memory-consumed-cell">12400 KB</td>
1201
+ </tr>
1202
+
1203
+ <tr data-submission-id="5829006">
1204
+ <td><a class="view-source" title="Source" href="#"
1205
+ submissionid="5829006">5829006</a></td>
1206
+
1207
+ <td class="status-small">Jan 29, 2014 5:00:10 AM</td>
1208
+
1209
+ <td class="status-party-cell" data-participantid=
1210
+ "383489"><a href="/profile/sh19910711" title=
1211
+ "Newbie sh19910711" class=
1212
+ "rated-user user-gray">sh19910711</a></td>
1213
+
1214
+ <td class="status-small" data-problemid="844">
1215
+ <a href="/problemset/problem/146/E">146E - Lucky
1216
+ Subsequence</a></td>
1217
+
1218
+ <td>GNU C++0x</td>
1219
+
1220
+ <td class=
1221
+ "status-cell status-small status-verdict-cell"
1222
+ submissionid="5829006"><span class=
1223
+ 'verdict-rejected'>Wrong answer on test <span class=
1224
+ "verdict-format-judged">25</span></span></td>
1225
+
1226
+ <td class="time-consumed-cell">62 ms</td>
1227
+
1228
+ <td class="memory-consumed-cell">12400 KB</td>
1229
+ </tr>
1230
+
1231
+ <tr data-submission-id="5829005">
1232
+ <td><a class="view-source" title="Source" href="#"
1233
+ submissionid="5829005">5829005</a></td>
1234
+
1235
+ <td class="status-small">Jan 29, 2014 4:59:44 AM</td>
1236
+
1237
+ <td class="status-party-cell" data-participantid=
1238
+ "383489"><a href="/profile/sh19910711" title=
1239
+ "Newbie sh19910711" class=
1240
+ "rated-user user-gray">sh19910711</a></td>
1241
+
1242
+ <td class="status-small" data-problemid="844">
1243
+ <a href="/problemset/problem/146/E">146E - Lucky
1244
+ Subsequence</a></td>
1245
+
1246
+ <td>GNU C++0x</td>
1247
+
1248
+ <td class=
1249
+ "status-cell status-small status-verdict-cell"
1250
+ submissionid="5829005"><span class=
1251
+ 'verdict-rejected'>Wrong answer on test <span class=
1252
+ "verdict-format-judged">25</span></span></td>
1253
+
1254
+ <td class="time-consumed-cell">92 ms</td>
1255
+
1256
+ <td class="memory-consumed-cell">12400 KB</td>
1257
+ </tr>
1258
+
1259
+ <tr data-submission-id="5829000">
1260
+ <td><a class="view-source" title="Source" href="#"
1261
+ submissionid="5829000">5829000</a></td>
1262
+
1263
+ <td class="status-small">Jan 29, 2014 4:58:33 AM</td>
1264
+
1265
+ <td class="status-party-cell" data-participantid=
1266
+ "383489"><a href="/profile/sh19910711" title=
1267
+ "Newbie sh19910711" class=
1268
+ "rated-user user-gray">sh19910711</a></td>
1269
+
1270
+ <td class="status-small" data-problemid="844">
1271
+ <a href="/problemset/problem/146/E">146E - Lucky
1272
+ Subsequence</a></td>
1273
+
1274
+ <td>GNU C++0x</td>
1275
+
1276
+ <td class=
1277
+ "status-cell status-small status-verdict-cell"
1278
+ submissionid="5829000"><span class=
1279
+ 'verdict-rejected'>Wrong answer on test <span class=
1280
+ "verdict-format-judged">46</span></span></td>
1281
+
1282
+ <td class="time-consumed-cell">156 ms</td>
1283
+
1284
+ <td class="memory-consumed-cell">12400 KB</td>
1285
+ </tr>
1286
+
1287
+ <tr data-submission-id="5828999">
1288
+ <td><a class="view-source" title="Source" href="#"
1289
+ submissionid="5828999">5828999</a></td>
1290
+
1291
+ <td class="status-small">Jan 29, 2014 4:57:42 AM</td>
1292
+
1293
+ <td class="status-party-cell" data-participantid=
1294
+ "383489"><a href="/profile/sh19910711" title=
1295
+ "Newbie sh19910711" class=
1296
+ "rated-user user-gray">sh19910711</a></td>
1297
+
1298
+ <td class="status-small" data-problemid="844">
1299
+ <a href="/problemset/problem/146/E">146E - Lucky
1300
+ Subsequence</a></td>
1301
+
1302
+ <td>GNU C++0x</td>
1303
+
1304
+ <td class=
1305
+ "status-cell status-small status-verdict-cell"
1306
+ submissionid="5828999"><span class=
1307
+ 'verdict-rejected'>Time limit exceeded on test
1308
+ <span class=
1309
+ "verdict-format-judged">35</span></span></td>
1310
+
1311
+ <td class="time-consumed-cell">2000 ms</td>
1312
+
1313
+ <td class="memory-consumed-cell">12400 KB</td>
1314
+ </tr>
1315
+
1316
+ <tr data-submission-id="5828994">
1317
+ <td><a class="view-source" title="Source" href="#"
1318
+ submissionid="5828994">5828994</a></td>
1319
+
1320
+ <td class="status-small">Jan 29, 2014 4:56:10 AM</td>
1321
+
1322
+ <td class="status-party-cell" data-participantid=
1323
+ "383489"><a href="/profile/sh19910711" title=
1324
+ "Newbie sh19910711" class=
1325
+ "rated-user user-gray">sh19910711</a></td>
1326
+
1327
+ <td class="status-small" data-problemid="844">
1328
+ <a href="/problemset/problem/146/E">146E - Lucky
1329
+ Subsequence</a></td>
1330
+
1331
+ <td>GNU C++0x</td>
1332
+
1333
+ <td class=
1334
+ "status-cell status-small status-verdict-cell"
1335
+ submissionid="5828994"><span class=
1336
+ 'verdict-rejected'>Wrong answer on test <span class=
1337
+ "verdict-format-judged">30</span></span></td>
1338
+
1339
+ <td class="time-consumed-cell">280 ms</td>
1340
+
1341
+ <td class="memory-consumed-cell">12400 KB</td>
1342
+ </tr>
1343
+
1344
+ <tr data-submission-id="5828992">
1345
+ <td><a class="view-source" title="Source" href="#"
1346
+ submissionid="5828992">5828992</a></td>
1347
+
1348
+ <td class="status-small">Jan 29, 2014 4:55:24 AM</td>
1349
+
1350
+ <td class="status-party-cell" data-participantid=
1351
+ "383489"><a href="/profile/sh19910711" title=
1352
+ "Newbie sh19910711" class=
1353
+ "rated-user user-gray">sh19910711</a></td>
1354
+
1355
+ <td class="status-small" data-problemid="844">
1356
+ <a href="/problemset/problem/146/E">146E - Lucky
1357
+ Subsequence</a></td>
1358
+
1359
+ <td>GNU C++0x</td>
1360
+
1361
+ <td class=
1362
+ "status-cell status-small status-verdict-cell"
1363
+ submissionid="5828992"><span class=
1364
+ 'verdict-rejected'>Wrong answer on test <span class=
1365
+ "verdict-format-judged">30</span></span></td>
1366
+
1367
+ <td class="time-consumed-cell">310 ms</td>
1368
+
1369
+ <td class="memory-consumed-cell">12400 KB</td>
1370
+ </tr>
1371
+
1372
+ <tr data-submission-id="5828990">
1373
+ <td><a class="view-source" title="Source" href="#"
1374
+ submissionid="5828990">5828990</a></td>
1375
+
1376
+ <td class="status-small">Jan 29, 2014 4:54:54 AM</td>
1377
+
1378
+ <td class="status-party-cell" data-participantid=
1379
+ "383489"><a href="/profile/sh19910711" title=
1380
+ "Newbie sh19910711" class=
1381
+ "rated-user user-gray">sh19910711</a></td>
1382
+
1383
+ <td class="status-small" data-problemid="844">
1384
+ <a href="/problemset/problem/146/E">146E - Lucky
1385
+ Subsequence</a></td>
1386
+
1387
+ <td>GNU C++0x</td>
1388
+
1389
+ <td class=
1390
+ "status-cell status-small status-verdict-cell"
1391
+ submissionid="5828990"><span class=
1392
+ 'verdict-rejected'>Wrong answer on test <span class=
1393
+ "verdict-format-judged">16</span></span></td>
1394
+
1395
+ <td class="time-consumed-cell">30 ms</td>
1396
+
1397
+ <td class="memory-consumed-cell">12400 KB</td>
1398
+ </tr>
1399
+
1400
+ <tr data-submission-id="5828986">
1401
+ <td><a class="view-source" title="Source" href="#"
1402
+ submissionid="5828986">5828986</a></td>
1403
+
1404
+ <td class="status-small">Jan 29, 2014 4:53:08 AM</td>
1405
+
1406
+ <td class="status-party-cell" data-participantid=
1407
+ "383489"><a href="/profile/sh19910711" title=
1408
+ "Newbie sh19910711" class=
1409
+ "rated-user user-gray">sh19910711</a></td>
1410
+
1411
+ <td class="status-small" data-problemid="844">
1412
+ <a href="/problemset/problem/146/E">146E - Lucky
1413
+ Subsequence</a></td>
1414
+
1415
+ <td>GNU C++0x</td>
1416
+
1417
+ <td class=
1418
+ "status-cell status-small status-verdict-cell"
1419
+ submissionid="5828986"><span class=
1420
+ 'verdict-rejected'>Wrong answer on test <span class=
1421
+ "verdict-format-judged">30</span></span></td>
1422
+
1423
+ <td class="time-consumed-cell">434 ms</td>
1424
+
1425
+ <td class="memory-consumed-cell">209300 KB</td>
1426
+ </tr>
1427
+
1428
+ <tr data-submission-id="5828976">
1429
+ <td><a class="view-source" title="Source" href="#"
1430
+ submissionid="5828976">5828976</a></td>
1431
+
1432
+ <td class="status-small">Jan 29, 2014 4:49:24 AM</td>
1433
+
1434
+ <td class="status-party-cell" data-participantid=
1435
+ "383489"><a href="/profile/sh19910711" title=
1436
+ "Newbie sh19910711" class=
1437
+ "rated-user user-gray">sh19910711</a></td>
1438
+
1439
+ <td class="status-small" data-problemid="844">
1440
+ <a href="/problemset/problem/146/E">146E - Lucky
1441
+ Subsequence</a></td>
1442
+
1443
+ <td>GNU C++0x</td>
1444
+
1445
+ <td class=
1446
+ "status-cell status-small status-verdict-cell"
1447
+ submissionid="5828976"><span class=
1448
+ 'verdict-rejected'>Wrong answer on test <span class=
1449
+ "verdict-format-judged">30</span></span></td>
1450
+
1451
+ <td class="time-consumed-cell">218 ms</td>
1452
+
1453
+ <td class="memory-consumed-cell">12400 KB</td>
1454
+ </tr>
1455
+
1456
+ <tr data-submission-id="5828963">
1457
+ <td><a class="view-source" title="Source" href="#"
1458
+ submissionid="5828963">5828963</a></td>
1459
+
1460
+ <td class="status-small">Jan 29, 2014 4:46:56 AM</td>
1461
+
1462
+ <td class="status-party-cell" data-participantid=
1463
+ "383489"><a href="/profile/sh19910711" title=
1464
+ "Newbie sh19910711" class=
1465
+ "rated-user user-gray">sh19910711</a></td>
1466
+
1467
+ <td class="status-small" data-problemid="844">
1468
+ <a href="/problemset/problem/146/E">146E - Lucky
1469
+ Subsequence</a></td>
1470
+
1471
+ <td>GNU C++0x</td>
1472
+
1473
+ <td class=
1474
+ "status-cell status-small status-verdict-cell"
1475
+ submissionid="5828963"><span class=
1476
+ 'verdict-rejected'>Wrong answer on test <span class=
1477
+ "verdict-format-judged">8</span></span></td>
1478
+
1479
+ <td class="time-consumed-cell">30 ms</td>
1480
+
1481
+ <td class="memory-consumed-cell">12400 KB</td>
1482
+ </tr>
1483
+
1484
+ <tr class="last-row" data-submission-id="5828956">
1485
+ <td><a class="view-source" title="Source" href="#"
1486
+ submissionid="5828956">5828956</a></td>
1487
+
1488
+ <td class="status-small">Jan 29, 2014 4:45:52 AM</td>
1489
+
1490
+ <td class="status-party-cell" data-participantid=
1491
+ "383489"><a href="/profile/sh19910711" title=
1492
+ "Newbie sh19910711" class=
1493
+ "rated-user user-gray">sh19910711</a></td>
1494
+
1495
+ <td class="status-small" data-problemid="844">
1496
+ <a href="/problemset/problem/146/E">146E - Lucky
1497
+ Subsequence</a></td>
1498
+
1499
+ <td>GNU C++0x</td>
1500
+
1501
+ <td class=
1502
+ "status-cell status-small status-verdict-cell"
1503
+ submissionid="5828956"><span class=
1504
+ 'verdict-rejected'>Wrong answer on test <span class=
1505
+ "verdict-format-judged">8</span></span></td>
1506
+
1507
+ <td class="time-consumed-cell">30 ms</td>
1508
+
1509
+ <td class="memory-consumed-cell">12400 KB</td>
1510
+ </tr>
1511
+ </table>
1512
+ </div>
1513
+ </div>
1514
+
1515
+ <div class="information-box" style="display: none;">
1516
+ <h5>Judgement protocol</h5>
1517
+ <hr>
1518
+
1519
+ <div class="protocol" style=
1520
+ "font-size:10px;margin:1em;width:50em;max-height:30em;overflow:auto;font-family:courier new,monospace;">
1521
+ <pre>
1522
+
1523
+ </pre>
1524
+ </div>
1525
+ </div>
1526
+
1527
+ <div class="test-for-popup-proto" style="display:none;">
1528
+ <div class="test-header">
1529
+ Test: #<span class="test">&nbsp;</span>, time:
1530
+ <span class="time">&nbsp;</span> ms., memory:
1531
+ <span class="memory">&nbsp;</span> KB, exit code:
1532
+ <span class="exitCode">&nbsp;</span>, checker exit code:
1533
+ <span class="checkerExitCode">&nbsp;</span>, verdict:
1534
+ <span class="verdict">&nbsp;</span>
1535
+ </div>
1536
+
1537
+ <div style="font-size:11px;">
1538
+ <div class="popup-input-div">
1539
+ <div>
1540
+ Input
1541
+ </div>
1542
+ <pre class="input">
1543
+
1544
+ </pre>
1545
+ </div>
1546
+
1547
+ <div class="popup-output-div">
1548
+ <div>
1549
+ Output
1550
+ </div>
1551
+ <pre class="output">
1552
+
1553
+ </pre>
1554
+ </div>
1555
+
1556
+ <div class="popup-answer-div">
1557
+ <div>
1558
+ Answer
1559
+ </div>
1560
+ <pre class="answer">
1561
+
1562
+ </pre>
1563
+ </div>
1564
+
1565
+ <div>
1566
+ <div>
1567
+ Checker Log
1568
+ </div>
1569
+ <pre class="checker">
1570
+
1571
+ </pre>
1572
+ </div>
1573
+ </div>
1574
+ </div>
1575
+
1576
+ <div class="pagination next-or-prev-prototype" style=
1577
+ "float:left; display:none">
1578
+ <a class="arrow prev">&larr;</a> <a class=
1579
+ "arrow next">&rarr;</a>
1580
+ </div>
1581
+
1582
+ <div class="source-popup" style=
1583
+ "display:none;width:900px;height:500px;overflow:auto;padding:1em;margin:1em;font-size:12px;">
1584
+ <span class="source-popup-header" style="">&nbsp;</span>
1585
+ <pre class="source prettyprint">
1586
+ <img src=
1587
+ "http://worker.codeforces.ru/static/images/indicator.gif">
1588
+
1589
+ </pre>
1590
+ </div>
1591
+
1592
+ <div class="pagination">
1593
+ <ul>
1594
+ <li style="list-style: none"><span class=
1595
+ "inactive">&larr;</span></li>
1596
+
1597
+ <li><span class="page-index active" pageindex=
1598
+ "1"><a href="/submissions/sh19910711/page/1">1</a></span></li>
1599
+
1600
+ <li><span class="page-index" pageindex="2"><a href=
1601
+ "/submissions/sh19910711/page/2">2</a></span></li>
1602
+
1603
+ <li><span class="page-index" pageindex="3"><a href=
1604
+ "/submissions/sh19910711/page/3">3</a></span></li>
1605
+
1606
+ <li>...</li>
1607
+
1608
+ <li><span class="page-index" pageindex="34"><a href=
1609
+ "/submissions/sh19910711/page/34">34</a></span></li>
1610
+
1611
+ <li><span class="page-index" pageindex="35"><a href=
1612
+ "/submissions/sh19910711/page/35">35</a></span></li>
1613
+
1614
+ <li><a href="/submissions/sh19910711/page/2" class=
1615
+ "arrow">&rarr;</a></li>
1616
+ </ul>
1617
+ </div>
1618
+ </div>
1619
+ </div>
1620
+ </body>
1621
+ </html>