-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (110 loc) · 3.85 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Compiler support on programming contest sites" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Contest site compilers</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/lovrop/contestcompilers">View on GitHub</a>
<h1 id="project_title">Compiler support on programming contest sites</h1>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<table>
<thead>
<tr>
<th class="center">Site</th>
<th class="center">Compiler</th>
<th class="center">Architecture</th>
<th class="center">C++ ver</th>
<th class="center">SIMD</th>
<th class="center">Issues</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="http://codeforces.com/blog/entry/79">CodeChef</a></td>
<td>GCC 4.9.2</td>
<td>Linux 32-bit</td>
<td class="center">C++14</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="http://codeforces.com/blog/entry/79">Codeforces (GCC)</a></td>
<td>GCC 6.2.0</td>
<td>Windows 32-bit</td>
<td class="center">C++14</td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="http://codeforces.com/blog/entry/79">Codeforces (MSVC)</a></td>
<td>VS 2010</td>
<td>Windows 32-bit</td>
<td class="center">✘</td>
<td>SSE 4.2</td>
<td></td>
</tr>
<tr>
<td>Croatian Open</td>
<td>GCC 4.8.2</td>
<td>Linux 64-bit</td>
<td class="center">C++11</td>
<td class="center">?</td>
<td><a href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58800">Bug 58800 - std::nth_element segfaults</td>
</tr>
<tr>
<td>HackerRank</td>
<td>GCC 6.3.0</td>
<td>Linux 64-bit</td>
<td class="center">C++14</td>
<td>SSE 2</td>
<td></td>
</tr>
<tr>
<td>SPOJ</td>
<td>GCC 6.3.0</td>
<td>Linux 64-bit</td>
<td class="center">C++14</td>
<td>SSE 2</td>
<td></td>
</tr>
<tr>
<td>TopCoder</td>
<td>GCC 4.8.1</td>
<td>Linux 64-bit</td>
<td class="center">C++11</td>
<td class="center">?</td>
<td><a href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58800">Bug 58800 - std::nth_element segfaults</td>
</tr>
<tr>
<td><a href="http://www.usaco.org/index.php?page=instructions">USACO</a></td>
<td>GCC 4.8.2</td>
<td>Linux ?-bit</td>
<td class="center">C++11</td>
<td class="center">?</td>
<td></td>
</tr>
</tbody>
</table>
<p>Last updated on 2017-06-03.</p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p class="copyright">Contest site compilers maintained by <a href="https://github.com/lovrop">lovrop</a></p>
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>