-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1555 lines (1511 loc) · 63.7 KB
/
index.html
File metadata and controls
executable file
·1555 lines (1511 loc) · 63.7 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="https://cpp-coding-challenge.github.io/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="High School Programming Contest (HSPC)" />
<meta property="og:description" content="The Second High School Programming Contest (HSPC) hosted by Cal Poly Pomona (CPP) brings talented students from high schools and middle schools throughout Southern California to the CPP campus to participate in an organized competition. Students individually compete to demonstrate their programming skills and problem solving abilities by attempting to solve six programming problems within a three hour period.
" />
<meta property="og:image" content="https://cpp-coding-challenge.github.io/favicons/apple-icon-180x180.png" />
<title>High School Programming Contest (HSPC)</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="57x57" href="favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i&subset=cyrillic" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<!-- Styles -->
<link href="css/style.css" rel="stylesheet" media="screen">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/demo.css">
<link rel="stylesheet" type="text/css" href="css/component.css">
<!--[if IE]>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="fb-root"></div>
<!-- Loader -->
<div class="loader">
<div class="loader-brand"><img alt="" class="img-responsive center-block" src="favicons/favicon-96x96.png"></div>
</div>
<div id="layout" class="layout">
<!-- Header -->
<header id="top" class="navbar js-navbar-affix">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#layout" class="brand js-target-scroll">
<img class="brand-img-white" alt="" width="150" src="img/brand-2.png">
<img class="brand-img" alt="" width="150" src="img/brand-2.png">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#layout">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#eligibility">Registration</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#rules">Rules</a></li>
<li><a href="#previous-contests">Previous Contests</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</header>
<!-- Home -->
<main id="home" class="masked" data-stellar-background-ratio="0.8">
<div class="opener rel-1" style="z-index: 2;">
<div class="container">
<h1 class="wow fadeInDown">2020 High School Programming Contest</h1>
<!-- TODO: Use a different style for the date? -->
<p class="lead-text">April 25th, 2020 at 11:00am</p>
<p class="lead-text">Compete against your peers and other high school and middle school students who share your interest and passion in programming.</p>
<p class="lead-text">As of 2020, middle school students (grades 6-8) may participate in the contest for Pre-High School categories.</p>
<p class="lead-text"><b><u>NOTE:</u> We will host our competition online via HackerRank this year.</b></p>
<div class="control">
<a href="#about" class="btn js-target-scroll">Learn More</a>
<a href="#eligibility" class="btn js-target-scroll">Sign Up Now</a>
<a href="http://eepurl.com/gRJ2T9" target="_blank" class="btn mailingList">Join Mailing List</a>
<a href="Announcement-HSPC-2020-International-Division.pdf" class="btn js-target-scroll">Annoucement Intl. Division</a>
<!-- <a href="direction.pdf" target="_blank" class="btn">Directions</a> -->
</div>
</div>
</div>
<div class="container demo-1" style="position:absolute; top: 0; left: 0; z-index: 1; min-width: 100%; padding-left: 0; padding-right: 0;">
<div id="large-header" class="large-header">
<canvas id="demo-canvas"></canvas>
</div>
</div>
</main>
<!-- Content -->
<div class="content">
<!-- About -->
<section id="about" class="about text-center section">
<div class="container">
<div class="row">
<div class="text-center col-md-10 col-md-offset-1">
<h2 class="section-title">About</h2>
<p class="lead-text">
The Fourth High School Programming Contest (HSPC) hosted by <a href="http://www.cpp.edu/" target="_blank">Cal Poly Pomona (CPP)</a> brings talented students from high schools and middle schools to participate in an organized competition. Students compete individually to demonstrate their programming skills and problem solving abilities by attempting to solve eight programming problems within a three hour period.
</p>
</div>
</div>
<div class="section-body">
<div class="row row-columns row-padding">
<div class="column column-padding col-md-4">
<i class="text-primary icon ion-happy-outline"></i>
<h3>Experience</h3>
<p>Get hands on experience working on real coding questions in a fun and fast paced environment</p>
</div>
<div class="column column-padding col-md-4">
<i class="text-primary icon ion-ribbon-b"></i>
<h3>Prizes</h3>
<p>Win cool prizes from the industry sponsors and the envy of your peers</p>
</div>
<div class="column column-padding col-md-4">
<i class="text-primary icon ion-pizza"></i>
<h3>Fuel-up</h3>
<p>We recommend you eat before the competition starts</p>
</div>
</div>
</div>
</div>
</section>
<section id="eligibility" class="reviews text-center bgc-light section">
<div class="container">
<div class="row">
<div class="text-center col-md-10 col-md-offset-1">
<h2 class="section-title">Registration</h2>
<p class="lead-text">All California high school students and advanced junior high students are eligible. Middle school students will compete in the Pre-High School Category.</p>
<p class="lead-text"><b>Sign up for <u>$20 registration fee.</u></b></p>
<a href="" target="_blank" class="btn reg">Sign Up Now</a>
<a href="http://eepurl.com/gRJ2T9" target="_blank" class="btn reg mailingList">Join Mailing List</a>
</div>
</div>
</div>
</section>
<section id="schedule" class="reviews text-center section">
<div class="container">
<div class="row">
<div class="text-center col-md-8 col-md-offset-2">
<h2 class="section-title">Schedule</h2>
<p class="lead-text">The event will start at 11:00 AM on April 25 online. We will provide link and instruction to participants on the competition day</p>
</div>
</div>
<div class="section-body col-md-8 col-md-offset-2">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Start</th>
<th>End</th>
<th>Activity</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td>11:00 am</td>
<td>12:00 pm</td>
<td>Check-In</td>
<td>Online via Zoom</td>
</tr>
<tr>
<td>12:00 pm</td>
<td>3:00 pm</td>
<td>HSPC Contest</td>
<td>Online via HackerRank</td>
</tr>
<tr>
<td>5:00 pm</td>
<td>TBA</td>
<td>Award Presentation</td>
<td>Online via Zoom</td>
</tr>
</tbody>
</table>
</div>
<!-- <iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d811.2900937187512!2d-117.82538843783732!3d34.05886563849832!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xdbc55b5adc2850c8!2sCal+Poly+Pomona+College+of+Science!5e1!3m2!1sen!2sus!4v1552151509106" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe>
-->
</div>
</section>
<section id="awards" class="reviews text-center bgc-light section">
<div class="container">
<div class="row">
<div class="text-center col-md-8 col-md-offset-2">
<h2 class="section-title">Awards</h2>
<p class="lead-text">This year’s awards are provided by our sponsors: </p>
<div class="partners">
<div class="partners">
<a href="http://www.northropgrumman.com/Pages/default.aspx">
<img class=
"sponsor-icon" src="img/partners/northrop-grumman-icon.png">
</a>
</div>
<div class="partner">
<a href="https://kronosaur.com/">
<img class="sponsor-icon" src="img/partners/kronosaur-productions.jpg">
</a>
</div><div class="partner">
<a href="https://transcendence.kronosaur.com/">
<img class="sponsor-icon" src="img/partners/TranscendenceTile.jpg">
</a>
</div><div class="partner">
<a href="https://www.snapchat.com/">
<img class="sponsor-icon" src="img/partners/snapchat.jpg">
</a>
</div><div class="partner">
<a href="http://www.nsf.gov/">
<img class=
"sponsor-icon" src="img/partners/nsf-logo.jpg">
</a>
</div><div class="partner">
<a href="http://www.nsa.gov">
<img class=
"sponsor-icon" src="img/partners/nsa-logo.png">
</a>
</div><div class="partner">
<a href="https://www.gen-cyber.com/">
<img class="sponsor-icon" src="img/partners/gencyber-logo.png">
</a>
</div><div class="partner">
<a href="https://www.hackerrank.com/">
<img class="sponsor-icon" src="img/partners/HackerRank-logo.png">
</a>
</div><div class="partner">
<a href="https://www.google.com/">
<img class="sponsor-icon" src="https://lh3.googleusercontent.com/NGPrjka2ai0w7sfhxkxCwtOSh2wVyEZMdtrVxI4vrA22ebA_fcyl9PSvhTaCYXSWh0A68ZhvXhVZ4U-Nnp3v9IfoXg5o5H1tjjK97cs">
</a>
</div>
</div>
</div>
</div>
<div class="section-body">
<div class="row">
<div class="review-carousel carousel">
<div class="review">
<div class="text-center">
<i class="text-primary icon ion-man"></i>
<h3>Individual Prizes</h3>
<p>Top 5 individual performers in the individual category</p>
</div>
</div>
<!-- <div class="review">
<div class="text-center">
<i class="text-primary icon ion-ios-people"></i>
<h3>Team Prizes</h3>
<p>Top 5 winning teams in the team category</p>
</div>
</div> -->
<div class="review">
<div class="text-center">
<i class="text-primary icon ion-woman"></i>
<h3>Grace Hopper Awards</h3>
<p>Top 5 female contestants in the individual category</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<p style="margin-top: 1em; text-align: center"><b>Middle school students will compete in the Pre-High School category.</b></p>
<section id="rules" class="contacts text-center bgc-dark section">
<div class="container">
<div class="row">
<div class="text-center col-md-8 col-md-offset-2">
<h2 class="section-title">Rules</h2>
</div>
</div>
<h3 class="section-title"><u>Frequently Asked Questions (FAQ)</u></h3>
<div class="row">
<div class="row row-columns row-padding">
<div class="column column-padding col-md-6">
<h3>Who is eligible to compete?</h3>
<p>The competition is open to all California middle school and high school students (public, private, or home schools). Participants may be any student currently enrolled in grades 6-12. Advanced junior high and graduating seniors are also welcome to participate.</p>
</div>
<div class="column column-padding col-md-6">
<h3>Will there be teams?</h3>
<p>Yes, you can either compete individually or choose to form a team of 2 members. Teams will compete in the team category. Each team member needs to register individually.</p>
</div>
</div>
<div class="column column-padding col-md-6">
<h3>How long is the competition?</h3>
<p>The contest will consist of 6 problems to be solved over a 3 hour period. The set of problems will span various levels of difficulty.</p>
</div>
<div class="column column-padding col-md-6">
<h3>What languages can we code in?</h3>
<p>Solutions to the problems must be coded in Java, Python or C++. No other languages are allowed.</p>
</div>
</div>
<div class="row">
<div class="column column-padding col-md-6">
<h3>Can you bring books?</h3>
<p>You are allowed to bring a total of two books to the contest. These must be “traditional” books – you may not compose your own book or set of notes.</p>
</div>
<div class="column column-padding col-md-6">
<h3>Can you bring standalone software?</h3>
<p>You are NOT allowed to bring any software or disks/usb into the lab. If you need a piece of paper, you may ask the lab proctor for blank paper. Any question should be submitted to the judges in writing.</p>
</div>
<div class="column column-padding col-md-6">
<h3>What if I have a question during the competition?</h3>
<p>Each clarification question will be considered and acknowledged, but the judges reserve the right to not answer any question that may reveal the answer. The question and its answer may be provided to all contestants if it seems relevant.</p>
</div>
<div class="column column-padding col-md-6">
<h3>Does performance matter?</h3>
<p>Yes. Performance is a criterion for judging if a solution is correct. Your program must execute and deliver a correct answer within one minute in order to be considered correct. For some of the problems there may exist a solution that might work, but is so inefficient that it will take longer than a minute to finish.</p>
</div>
<div class="row">
<div class="column column-padding col-md-6">
<h3>How will we submit our solutions?</h3>
<p>We will be using HackerRank as the problem submission system.
<a target="_blank" href="http://hackerrank.com">You can take a quick tutorial on how to use HackerRank.</a> </p>
</div>
<div class="column column-padding col-md-6">
<h3>Can we use outside/third-party libraries?</h3>
<p>Yes, but there will not be any third party libraries provided for you. Only standard libraries will be provided, but you may type in any support libraries on your own and submit them as part of your solution.</p>
</div>
</div>
<div class="row">
<div class="column column-padding col-md-12">
<h3>Where can I find some sample questions?</h3>
<p>You can view the contest questions in the previous contest <a href="#previous-contests">here</a></p>
<p>Participants can get familiar with the questions and the HackerRank environment <a href="http://hr.gs/hspc-sample-test">here</a></p>
</div>
</div>
<div class="row column">
<div class="text-center">
<h3 class="section-title"><u>Scoring and Judging Criteria</u></h3>
<ol align="left">
<li>Ranking will be based on overall score, where the score is determined primarily by the number of problems solved correctly.</li>
<li>Time will be used as a secondary scoring method in order to break potential ties. In the case where multiple contestants have solved the same number of problems, the tie breaker will be the total time taken to solve the correct problems (i.e., the contestant solving the problems in the least amount of time will have the higher ranking).</li>
</ol>
</div>
</div>
<div class="row column">
<h3 class="section-title"><u>Computer Lab Rules</u></h3>
<ol align="left">
<li><b>NO Food or Drinks allowed in the labs.</b> There will not be an official break, but you may briefly leave the contest area to go to the restroom or to get a drink.</li>
<li><b>NO Personal Laptops.</b> Each student will be assigned a computer in one of the CPP labs. You may use only the assigned machine to solve the problems.</li>
<li><b>NO Internet use. </b>The Internet will be turned off in the labs. You may not search the web or use the Internet in any other way in order to obtain hints or tips.</li>
<li><b>NO use of cellphones/electronic devices.</b> While in the lab, all electronic devices must be turned off. Electronic devices are not allowed to be used during the competition. In general, any disturbance that causes other contestants to lose their concentration will be handled by the lab proctors.</li>
<li><b>NO outside contact during the competition.</b> You may not use a wireless device to contact or talk to anyone during the contest period.</li>
<li><b>The CPP labs are equipped with the following computers and software:</b></li>
- Eclipse for Java and C++<br>
- Netbeans for Java and C++<br>
- Thonny for Python 2 and 3<br>
</ol>
</div>
</div>
</section>
<div class="container">
<div class="row">
<div class="text-center col-md-8 col-md-offset-2">
<h2 class="section-title">Previous Contests</h2>
<!-- 2020 -->
<p class="lead-text">HSPC 2020</p>
<a target="_blank" href="problems/HSPC_2020_High_School_without_answers.pdf" style="font-weight: bold;">View High School Problems</a>
<br>
<a target="_blank" href="problems/HSPC_2020_Middle_School_without_answers.pdf" style="font-weight: bold;">View Middle School Problems</a>
<!-- Middle School 2020 -->
<table class="table table-bordered table-striped">
<h3><u>Middle School Division</u></h3>
<h3>Top Coder Award</h3>
<tr>
<th>Place</th>
<th>Contestant</th>
<th>School</th>
</tr>
<tr>
<td>1st</td>
<td>Seungho Lee</td>
<td>Egan Junior High School</td>
</tr>
<tr>
<td>2nd</td>
<td>Taeksoo Kwon</td>
<td>El Cerrito Middle School</td>
</tr>
<tr>
<td>3rd</td>
<td>Nathan Kang</td>
<td>Walter Reed Middle School</td>
</tr>
<tr>
<td>4th</td>
<td>Melody Yu</td>
<td>Rancho San Joaquin Middle School</td>
</tr>
<tr>
<td>5th</td>
<td>Carolyn Lee</td>
<td>Orchard Hills School</td>
</tr>
<tr>
<td>6th</td>
<td>Jiuyu Zhang</td>
<td>Jeffrey Trail Middle School</td>
</tr>
<tr>
<td>7th</td>
<td>Devon Y Chang</td>
<td>Rancho San Joaquin Middle School</td>
</tr>
<tr>
<td>8th</td>
<td>Nick Li</td>
<td>Ynez School</td>
</tr>
<tr>
<td>9th</td>
<td>Mathew Xie</td>
<td>Foothills Middle School</td>
</tr>
<tr>
<td>10th</td>
<td>Zachary Ian Miller</td>
<td>Science Academy STEM Magnet</td>
</tr>
<tr>
<td>11st</td>
<td>Hyunmyung Jang</td>
<td>SCCS</td>
</tr>
<tr>
<td>12nd</td>
<td>Jasmine Jung</td>
<td>Orange County School of the Arts (OCSA)</td>
</tr>
<tr>
<td>13rd</td>
<td>Chloe Wu</td>
<td>Dr. Augustine Ramirez Intermediate</td>
</tr>
<tr>
<td>14th</td>
<td>Jack Liu</td>
<td>Chaparral Middle School</td>
</tr>
<tr>
<td>15th</td>
<td>Will Chen</td>
<td>Sierra Vista Middle School</td>
</tr>
<tr>
<td>16th</td>
<td>Sean Kim</td>
<td>Walter Reed Middle School</td>
</tr>
<tr>
<td>17th</td>
<td>William Yifu Liang</td>
<td>Portola Springs</td>
</tr>
<tr>
<td>18th</td>
<td>Justine Lee</td>
<td>LACES</td>
</tr>
<tr>
<td>19th</td>
<td>Millie Wang</td>
<td>Redwood Middle School</td>
</tr>
<tr>
<td>20th</td>
<td>Isaac Seo</td>
<td>Christ The King</td>
</tr>
<tr>
<td>21st</td>
<td>Jiwo Jeong</td>
<td>Jeffrey Middle School</td>
</tr>
<tr>
<td>22nd</td>
<td>Joon-Hyung Daniel Noh</td>
<td>Walter Reed Middle School</td>
</tr>
<tr>
<td>23rd</td>
<td>Sean Zeng</td>
<td>Rancho San Joaquin Middle School</td>
</tr>
<tr>
<td>24th</td>
<td>Arthur Liang</td>
<td>Alvarado Intermediate</td>
</tr>
<tr>
<td>25th</td>
<td>Zihao Wang</td>
<td>Suzanne Middle School</td>
</tr>
</table>
<table class="table table-bordered table-striped">
<h3>Grace Hopper Award</h3>
<tr>
<th>Place</th>
<th>Contestant</th>
<th>School</th>
</tr>
<tr>
<td>1st</td>
<td>Melody Yu</td>
<td>Rancho San Joaquin Middle School</td>
</tr>
<tr>
<td>2nd</td>
<td>Carolyn Lee</td>
<td>Orchard Hills School</td>
</tr>
<tr>
<td>3rd</td>
<td>Jasmine Jung</td>
<td>Orange County School of the Arts (OCSA)</td>
</tr>
<tr>
<td>4th</td>
<td>Chloe Wu</td>
<td>Dr. Augustine Ramirez Intermediate</td>
</tr>
<tr>
<td>5th</td>
<td>Millie Wang</td>
<td>Redwood Middle School</td>
</tr>
</table>
<!-- High School 2020 -->
<table class="table table-bordered table-striped">
<h3><u>High School Division</u></h3>
<h3>Top Coder Award</h3>
<tr>
<th>Place</th>
<th>Contestant</th>
<th>School</th>
</tr>
<tr>
<td>1st</td>
<td>Aaron Chew</td>
<td>Valencia High</td>
</tr>
<tr>
<td>2nd</td>
<td>Catherine Cho</td>
<td>Harvard-Westlake</td>
</tr>
<tr>
<td>3rd</td>
<td>Andrew Chung</td>
<td>Northwood High</td>
</tr>
<tr>
<td>4th</td>
<td>Donggun Kwak</td>
<td>Harvard-Westlake</td>
</tr>
<tr>
<td>5th</td>
<td>Yash Jain</td>
<td>Moreau Catholic High</td>
</tr>
<tr>
<td>6th</td>
<td>Justin Kim</td>
<td>Los Osos High School</td>
</tr>
<tr>
<td>7th</td>
<td>Tom Binford</td>
<td>Taft Charter High STEAM Magnet</td>
</tr>
<tr>
<td>8th</td>
<td>Ho Lyun Jeong</td>
<td>Troy High School</td>
</tr>
<tr>
<td>9th</td>
<td>Divyanshu Bhadoria</td>
<td>Mission San Jose High School</td>
</tr>
<tr>
<td>10th</td>
<td>Arvin Ding</td>
<td>Portoloa High School</td>
</tr>
<tr>
<td>11st</td>
<td>Aaron Hao</td>
<td>Diamond Bar High School</td>
</tr>
<tr>
<td>12nd</td>
<td>Peter Gao</td>
<td>San Dieguito High School Academy</td>
</tr>
<tr>
<td>13rd</td>
<td>Justin Chung</td>
<td>Northwood High</td>
</tr>
<tr>
<td>14th</td>
<td>David Y Lee</td>
<td>Torrey Pines</td>
</tr>
<tr>
<td>15th</td>
<td>Minjun Andrew Kim</td>
<td>West Ranch High</td>
</tr>
<tr>
<td>16th</td>
<td>Tony Cha</td>
<td>Palos Verdes High</td>
</tr>
<tr>
<td>17th</td>
<td>Allen Weng</td>
<td>Irvine High</td>
</tr>
<tr>
<td>18th</td>
<td>Xu (Bill) Zhang</td>
<td>Sage Creek High</td>
</tr>
<tr>
<td>19th</td>
<td>Justin Ji</td>
<td>Whitney High</td>
</tr>
<tr>
<td>20th</td>
<td>Julie Kim</td>
<td>Branham High</td>
</tr>
<tr>
<td>21st</td>
<td>Jung Choi</td>
<td>Troy High</td>
</tr>
<tr>
<td>22nd</td>
<td>Paul Kang</td>
<td>La Canada High</td>
</tr>
<tr>
<td>23rd</td>
<td>Devin Han (Haochen Han)</td>
<td>Troy High</td>
</tr>
<tr>
<td>24th</td>
<td>Ryan Zhu</td>
<td>Diamond Bar High</td>
</tr>
<tr>
<td>25th</td>
<td>Yanhua (Ian) Li</td>
<td>Troy High</td>
</tr>
</table>
<table class="table table-bordered table-striped">
<h3>Grace Hopper Award</h3>
<tr>
<th>Place</th>
<th>Contestant</th>
<th>School</th>
</tr>
<tr>
<td>1st</td>
<td>Catherine Cho</td>
<td>Harvard-Westlake</td>
</tr>
<tr>
<td>2nd</td>
<td>Julie Kim</td>
<td>Branham High</td>
</tr>
<tr>
<td>3rd</td>
<td>Zhiyu Shen</td>
<td>Walnut High School</td>
</tr>
<tr>
<td>4th</td>
<td>Jaeeun Park</td>
<td>West Ranch High</td>
</tr>
<tr>
<td>5th</td>
<td>Audrey Lee</td>
<td>Mira Costa High</td>
</tr>
</table>
<!-- 2019 -->
<p class="lead-text">HSPC 2019 (May 4, 2019)</p>
<a target="_blank" href="problems/HSPC_2019_High_School_Questions.pdf" style="font-weight: bold;">View High School Problems</a>
<br>
<a target="_blank" href="problems/HSPC_2019_Middle_School_Questions.pdf" style="font-weight: bold;">View Middle School Problems</a>
<table class="table table-bordered table-striped">
<h3><u>Middle School Division</u></h3>
<h3>Top Coder Award</h3>
<tr>
<th>Place</th>
<th>Contestant(s)</th>
</tr>
<tr>
<td>1st</td>
<td>Davin Jeong</td>
</tr>
<tr>
<td>2nd</td>
<td>Adrian Lei</td>
</tr>
<tr>
<td>3rd</td>
<td>Melody Yu</td>
</tr>
<tr>
<td>4th</td>
<td>Andrew Shen</td>
</tr>
<tr>
<td>5th</td>
<td>Mason Wang</td>
</tr>
<tr>
<td>6th</td>
<td>Catherine Cho</td>
</tr>
<tr>
<td>7th</td>
<td>Edward Jung</td>
</tr>
<tr>
<td>8th</td>
<td>Jack Liu</td>
</tr>
<tr>
<td>9th</td>
<td>William Ma</td>
</tr>
<tr>
<td>10th</td>
<td>Allen Weng</td>
</tr>
</table>
<table class="table table-bordered table-striped">
<h3>Best Team Collaboration</h3>
<tr>
<td>1st</td>
<td>Nathan Kang<br>Caden Kang</td>
</tr>
<tr>
<td>2nd</td>
<td>Issa A. Alwazir<br>Mohammad Ibrahim Khan</td>
</tr>
<tr>
<td>3rd</td>
<td>Maddison Chau<br>Mario Castelo</td>
</tr>
<tr>
<td>4th</td>
<td>Enzo Cayetano<br>Emiliano Melendrez</td>
</tr>
<tr>
<td>5th</td>
<td>Hakop Zarikyan<br>Dru Reed</td>
</tr>
</table>
<table class="table table-bordered table-striped">
<h3>Grace Hopper Award</h3>
<tr>
<td>1st</td>
<td>Melody Yu</td>
</tr>
<tr>
<td>2nd</td>
<td>Catherine Cho</td>
</tr>
<tr>
<td>3rd</td>
<td>Sahana Anand</td>
</tr>
<tr>
<td>4th</td>
<td>Hannah Moon</td>
</tr>
<tr>
<td>5th</td>
<td>Cindy Ding</td>
</tr>
</table>
<table class="table table-bordered table-striped">
<h3><u>High School Division</u></h3>
<h3>Top Coder Award</h3>
<tr>
<td>1st</td>
<td>Arto Mihalache</td>
</tr>
<tr>
<td>2nd</td>
<td>Arvin Ding</td>
</tr>
<tr>
<td>3rd</td>
<td>Ryan Zhu</td>
</tr>
<tr>
<td>4th</td>
<td>Daniel Chou</td>
</tr>
<tr>
<td>5th</td>
<td>Harry Jaeyoung Cha</td>
</tr>
<tr>
<td>6th</td>
<td>Warrick He</td>
</tr>
<tr>
<td>7th</td>
<td>Andrew Chung</td>
</tr>
<tr>
<td>8th</td>
<td>Brandon Kam</td>
</tr>
<tr>
<td>9th</td>
<td>Peter Husman</td>
</tr>
<tr>
<td>10th</td>
<td>Sheldon Zhu</td>
</tr>
<tr>
<td>11th</td>
<td>Aaron Chew</td>
</tr>
<tr>
<td>12th</td>
<td>Allen Liu</td>
</tr>
<tr>
<td>13th</td>
<td>Divyanshu Bhadoria</td>
</tr>
<tr>
<td>14th</td>
<td>Xu (Bill) Zhang</td>
</tr>
<tr>
<td>15th</td>
<td>Jialong Sun</td>
</tr>
</table>
<table class="table table-bordered table-striped">
<h3>Best Team Collaboration</h3>
<tr>
<td>1st</td>
<td>Eric Lee<br>Matthew Kwon</td>
</tr>
<tr>
<td>2nd</td>
<td>Justin Kim<br>Kevin Jang</td>
</tr>
<tr>
<td>3rd</td>
<td>Christo Bakis<br>Jimmy Li</td>
</tr>
<tr>
<td>4th</td>
<td>Joseph Kim<br>Hyun Joe Jeong</td>
</tr>
<tr>
<td>5th</td>
<td>William Trang<br>Thomas Li</td>
</tr>
<tr>
<td>6th</td>
<td>Anderson Tsai<br>Brad Byun</td>
</tr>
<tr>
<td>7th</td>
<td>Sean Lee<br>Bryce Casaje</td>
</tr>
<tr>
<td>8th</td>
<td>Ethan Wang<br>Ethan Kosaki</td>
</tr>
<tr>
<td>9th</td>
<td>Chieh-Hsiu Hung<br>Zhaoyang Jia</td>
</tr>
<tr>
<td>10th</td>
<td>Justin Chung<br>Junha Kim</td>
</tr>
</table>
<table class="table table-bordered table-striped">
<h3>Grace Hopper Award</h3>
<tr>
<td>1st</td>
<td>Heather Dinh</td>
</tr>
<tr>
<td>2nd</td>
<td>Shivana Anand</td>
</tr>
<tr>
<td>3rd</td>
<td>Julie Kim</td>
</tr>
<tr>
<td>4th</td>
<td>Joanne Lee</td>
</tr>
<tr>
<td>5th</td>
<td>Su Hyang Kim</td>
</tr>
<tr>
</table>
<p class="lead-text">HSPC 2018 (May 19, 2018)</p>
<a href="problems/California_HSPC_2018__without_answers.pdf" style="font-weight: bold;">View Problems</a>
<table class="table table-bordered table-striped">
<h3><u>Middle School Division</u></h3>
<h3>Top Coder Award</h3>
<tr>
<th>Place</th>
<th>Contestant(s)</th>
<th>School</th>
<th>Score</th>
</tr>
<tr>
<td>1st</td>
<td>Peter Gao</td>
<td>Diegueño Middle School</td>
<td>4 Questions | 54 Minutes</td>
</tr>
<tr>
<td>2nd</td>
<td>Andrew Shen</td>
<td>Sierra Vista Middle School</td>
<td>2 Questions | 41 Minutes</td>
</tr>
<tr>
<td>3rd</td>
<td>Andrew Chung</td>
<td>Sierra Vista Middle School</td>
<td>2 Questions | 42 Minutes</td>
</tr>