-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
140 lines (135 loc) · 8.01 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
132
133
134
135
136
137
138
139
140
{% extends 'base.html' %}
{% block content %}
<section class="hero has-background-primary is-medium">
<div class="hero-body">
<div class="container">
<div class="columns is-centered">
<div class="column is-half">
<article class="message">
<div class="message-header has-background-white">
<h1 class="title big has-text-centered">
<span class="has-text-primary">m</span><span class="has-text-grey">BIT</span>
</h1>
</div>
<div class="message-body">
<h2 class="subtitle has-text-centered is-family-monospace">
<p>Montgomery Blair Informatics Tournament</p>
<p>June 8, 2024</p>
<p class="hero-date"><strong><a href="https://discord.gg/Jtr3EpA2XR">Join Discord</a></strong></p> <p class="hero-date" id="countdown"><strong></strong></p>
</h2>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<script>
var countDownDate = new Date("Jun 8, 2024 08:00:00").getTime();
var x = setInterval(function(){
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("countdown").innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
if (distance < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "Tune in for mBIT 2025!";
}
}, 1000);
</script>
<section class="section">
<div class="container">
<div class="tile is-ancestor columns is-centered info-boxes">
<div class="tile is-parent is-10">
<div class="tile is-child">
<div class="columns">
<div class="column">
<div class="message has-background-white">
<div class="is-size-5 message-header has-background-info">
<h1 class="title is-size-5 has-text-white">Compete with peers.</h1>
</div>
<div class="message-body has-background-white is-size-6">
<p>Come join fellow students across the region and across the world in a fun and friendly competition. Show off your programming knowledge and win awards!</p>
</div>
</div>
</div>
<div class="column">
<div class="message has-background-white">
<div class="is-size-5 message-header has-background-info">
<h1 class="title is-size-5 has-text-white">Collaborate with friends.</h1>
</div>
<div class="message-body has-background-white">
<p>Bring up to three of your friends and form a team. Successful programmers are also helpful and supportive teammates. Work together!</p>
</div>
</div>
</div>
<div class="column">
<div class="message has-background-white">
<div class="is-size-5 message-header has-background-info">
<h1 class="title is-size-5 has-text-white">Code something new.</h1>
</div>
<div class="message-body has-background-white">
<p>Whether you're a programming rookie or a coding veteran, these questions will make you think in new and creative ways. Everyone will learn something new!</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="divider">
<div class="tile is-ancestor columns is-centered">
<div class="tile is-vertical is-parent is-5">
<div class="message info-box is-child tile has-background-white">
<div class="is-size-5 message-header has-background-light">
<h1 class="title is-size-3 has-text-slightly-dark-grey">Overview</h1>
</div>
<div class="message-body has-background-white content">
<p>mBIT is a competitive programming competition for computer science students of all skill levels, organized by students from Montgomery Blair High School.</p>
<p>Competitors work in <strong>teams of up to four</strong> to solve interesting and challenging programming problems. There are prizes for the top teams in each division.</p>
<p>For more information, be sure to visit the <a href="/logistics">logistics</a> and <a href="/rules">rules</a> pages. If you have any questions about the competition, feel free to email us at <a href="mailto:[email protected]">[email protected]</a>.</p>
<p>If you are looking to practice for the competition, <a href="/archive">past mBIT problems</a>, <a href="http://www.usaco.org/index.php?page=contests">old USACO problems</a>, and the <a href="https://train.usaco.org/usacogate">USACO training pages</a> are great places to start. Keep in mind that the problems in the competition will primarily focus on thinking and problem solving, not rote memorization of algorithms and data structures.</p>
</div>
</div>
</div>
<div class="tile is-vertical is-parent is-5">
<div class="message info-box is-child tile has-background-white">
<div class="is-size-5 message-header has-background-light">
<h1 class="title is-size-3 has-text-slightly-dark-grey">Choosing a Division</h1>
</div>
<div class="message-body has-background-white content">
<p>mBIT offers two divisions: Standard and Advanced.</p>
<p>Standard: recommended for new competitive programmers and those in Bronze and Silver (or equivalent) USACO divisions. Topics may include: loops, lists, maps, recursion, basic math operations, and introductory to intermediate algorithms such as brute force, simulation, BFS, DFS and binary search.</p>
<p>Advanced: recommended for competitive programmers in Gold and Platinum (or equivalent) USACO divisions. Topics may include: dynamic programming, segment trees, combinatorics, number theory, and other advanced algorithms and data structures.</p>
<p>Take a look at our archive to get a sense of the difficulty of each division. Additionally, sample problems are available for download <a href="mBITSampleProblems.pdf">here</a>, and the solutions are available <a href="mBITSampleSolutions.pdf">here</a> (but you should try them first!). Note that we have renamed the rookie and varsity divisions to standard and advanced. If you can solve each of the standard ones easily, you should probably compete under advanced. Also, note that the standard division will feature more easier problems (with the same number of intermediate problems) than in previous years.</p>
</div>
</div>
</div>
</div>
<div class="tile is-ancestor columns is-centered">
<div class="tile is-parent is-10">
<div class="message info-box is-child tile">
<div class="is-size-5 message-header has-background-light">
<h1 class="title is-size-3 has-text-slightly-dark-grey">Sponsors</h1>
</div>
<div class="message-body has-background-white">
<p>mBIT is proudly sponsored by <a href="https://www.unither.com">United Therapeutics</a>, <a href="https://artofproblemsolving.com/">Art of Problem Solving</a>, <a href="https://www.mbhsmagnet.org/">Magnet Foundation</a>, <a href="https://www.janestreet.com/">Jane Street</a>, and <a href="https://www.non-trivial.org/">Non-Trivial</a>.
<p style="display: flex; align-items: center; margin-top: 1em; margin-bottom: 1em;">
<a href="https://www.unither.com"><img src="/unither.png" style="padding-right: 1em;"></a>
<a href="https://artofproblemsolving.com/"><img src="/aops.svg" width=220 style="margin-left: -13px"></a>
<a href="https://www.mbhsmagnet.org/"><img src="/magnet.png" width=120 style="margin-left: -13px"></a>
<a href="https://www.janestreet.com/"><img src="/janestreet.png" width=220 style="margin-left: 10px"></a>
</p>
<p style="display: flex; align-items: center; margin-top: 1em; margin-bottom: 1em;"><a href="https://www.non-trivial.org/"><img src="/non-trivial1.png" width=220 style="padding-right: 1em;"></a></p>
<p>Interested in sponsoring? Send us an email at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
</div>
</div>
</div>
</div>
</section>
{% endblock %}