├── .gitignore ├── Main.java ├── algorithm-engagements ├── algorithm-engagements-2006 │ ├── lii.cpp │ └── wie.cpp └── algorithm-engagements-2012 │ └── obr.cpp ├── bzoj ├── p1036.cpp ├── p2757.cpp ├── p3293.cpp └── p3294.cpp ├── codechef ├── APRIL12 │ ├── DOUBLE.cpp │ ├── DUMPLING │ │ └── Main.java │ ├── PANSTACK.cpp │ ├── PARALLEL.cpp │ └── PLAYFIT │ │ └── Main.java ├── JULY12 │ ├── CSUMD.cpp │ ├── DREAM.cpp │ ├── GRAYSC.cpp │ └── SAD.cpp └── OCT12 │ └── DIAMOND │ └── Main.java ├── codeforces ├── 101-codeforces-beta-round-79 │ └── E.cpp ├── 104-codeforces-beta-round-80 │ └── A.rb ├── 109-codeforces-beta-round-84 │ ├── C.cpp │ └── D.cpp ├── 110-codeforces-beta-round-84 │ └── A.py ├── 111-codeforces-round-85 │ └── D.cpp ├── 112-codeforces-beta-round-85 │ └── A.py ├── 113-codeforces-beta-round-86 │ └── B.cpp ├── 114-codeforces-beta-round-86 │ └── A.py ├── 116-codeforces-beta-round-87 │ ├── A.py │ └── D │ │ └── Solution.java ├── 117-codeforces-beta-round-88 │ └── D.cpp ├── 118-codeforces-beta-round-89 │ ├── A.py │ └── B.py ├── 119-codeforces-beta-round-90 │ └── A.py ├── 121-codeforces-beta-round-91 │ └── D │ │ └── Solution.java ├── 122-codeforces-beta-round-91 │ └── A.py ├── 124-codeforces-beta-round-92 │ └── A.py ├── 125-codeforces-testing-round-2 │ └── D.cpp ├── 126-codeforces-beta-round-93 │ └── D.cpp ├── 127-codeforces-beta-round-93 │ ├── A.cpp │ └── B │ │ └── Main.java ├── 129-codeforces-beta-round-94 │ ├── A.hs │ └── D.cpp ├── 13-codeforces-beta-round-13 │ └── B.cpp ├── 131-codeforces-beta-round-95 │ ├── A.py │ ├── B.py │ └── C.hs ├── 133-codeforces-beta-round-96 │ └── A.py ├── 136-codeforces-beta-round-97 │ └── A.py ├── 139-codeforces-beta-round-99 │ └── A.py ├── 14-codeforces-beta-round-14 │ └── C.cpp ├── 140-codeforces-round-100 │ ├── E.cpp │ └── F.cpp ├── 141-codeforces-round-101 │ └── D.cpp ├── 144-codeforces-round-103 │ └── A.py ├── 146-codeforces-round-104 │ └── A.py ├── 147-codeforces-testing-round-4 │ └── B │ │ └── Main.java ├── 149-codeforces-round-106 │ ├── A.py │ └── E │ │ └── Main.java ├── 15-codeforces-beta-round-15 │ ├── A.cpp │ └── B.cpp ├── 151-codeforces-round-107 │ └── A.py ├── 152-codeforces-round-108 │ ├── A.cpp │ └── C.hs ├── 155-codeforces-round-109 │ └── A.py ├── 156-codeforces-round-110 │ └── C.cpp ├── 157-codeforces-round-110 │ ├── A.rb │ └── D.cpp ├── 158-vk-cup-qualification-round-1 │ └── B.py ├── 16-codeforces-beta-round-16 │ ├── A.hs │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 160-codeforces-round-111 │ ├── A.py │ ├── B.hs │ └── D.cpp ├── 161-vk-cup-2012-round-1 │ ├── C.cpp │ └── D.cpp ├── 163-vk-cup-2012-round-2 │ ├── A.cpp │ └── E.cpp ├── 165-codeforces-round-112 │ └── A.py ├── 168-codeforces-round-114 │ └── A.rb ├── 176-croc-champ-2012-round-2 │ └── E.cpp ├── 177-abbyy-cup-2-easy │ └── E.rb ├── 178-abbyy-20-hard │ ├── A.cpp │ └── B.cpp ├── 18-codeforces-beta-round-18 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D │ │ └── Solution.java ├── 180-codeforces-round-116 │ └── F.rb ├── 182-codeforces-round-117 │ └── A.cpp ├── 183-croc-champ-2012-final │ ├── A │ │ └── Solution.java │ ├── B │ │ └── Main.java │ ├── C.cpp │ └── D │ │ └── Solution.java ├── 185-codeforces-round-118 │ ├── D.cpp │ └── E.cpp ├── 187-codeforces-round-119 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 19-codeforces-beta-round-19 │ ├── A.rb │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 190-codeforces-round-120 │ ├── D.cpp │ └── E.cpp ├── 191-codeforces-round-121 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── E.cpp ├── 193-codeforces-round-122 │ ├── C.cpp │ └── E │ │ └── Solution.java ├── 196-codeforces-round-124 │ └── C.cpp ├── 197-codeforces-round-124 │ └── C.rb ├── 20-codeforces-alpha-round-20 │ ├── A.rb │ └── B.cpp ├── 200-codeforces-round-126 │ └── B.rb ├── 204-codeforces-round-129 │ └── E.cpp ├── 208-codeforces-round-130 │ ├── A.py │ └── E.cpp ├── 209-vk-cup-2012-finals-pratice-session │ ├── A.cpp │ └── C.cpp ├── 213-codeforces-round-131 │ └── E.cpp ├── 214-codeforces-round-131 │ ├── A.hs │ └── E.cpp ├── 215-codeforces-round-132 │ ├── A.py │ └── E │ │ └── Solution.java ├── 216-codeforces-round-133 │ └── E.cpp ├── 217-codeforces-round-134 │ └── A.cpp ├── 219-codeforces-round-135 │ ├── A.cpp │ ├── B.py │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 22-codeforces-beta-round-22 │ ├── B.cpp │ └── D.cpp ├── 220-codeforces-round-136 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 221-codeforces-round-136 │ ├── A.py │ └── B.py ├── 222-codeforces-round-137 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 223-codeforces-round-138 │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── 224-codeforces-round-138 │ ├── A.py │ └── B.cpp ├── 225-codeforces-round-139 │ ├── A.py │ ├── B.py │ ├── C.cpp │ ├── D.cpp │ └── E.py ├── 226-codeforces-round-140 │ ├── A.py │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 227-codeforces-round-140 │ ├── A.py │ └── B.py ├── 228-codeforces-round-141 │ ├── A.py │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ ├── D │ │ └── Main.java │ └── E │ │ └── Main.java ├── 229-codeforces-round-142 │ ├── D.cpp │ └── E.cpp ├── 230-codeforces-round-142 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 231-codeforces-round-143 │ ├── A.hs │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ ├── D.py │ └── E.cpp ├── 232-codeforces-round-144 │ ├── A.cpp │ ├── B.cpp │ ├── D.cpp │ └── E.cpp ├── 233-codeforces-round-144 │ ├── A.py │ ├── B.cpp │ └── E.cpp ├── 234-codeforces-round-145 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── E.cpp ├── 235-codeforces-round-146 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── E.cpp ├── 236-codeforces-round-146 │ ├── A.rb │ └── B.cpp ├── 237-codeforces-round-147 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 238-codeforces-round-148 │ ├── A.cpp │ └── C │ │ └── Main.java ├── 24-codeforces-beta-round-24 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 240-codeforces-round-145 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp ├── 241-bayan-2012-2013-elimination-round │ └── A.rb ├── 242-codeforces-round-149 │ ├── A.rb │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 243-codeforces-round-150 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 246-codeforces-round-151 │ ├── A.hs │ └── C.cpp ├── 248-codeforces-round-152 │ └── B.cpp ├── 25-codeforces-beta-round-25 │ ├── C.cpp │ └── D.cpp ├── 251-codeforces-round-153 │ └── A.cpp ├── 253-codeforces-round-154 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 254-codeforces-round-155 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 255-codeforces-round-156 │ ├── A.rb │ └── B.rb ├── 256-codeforces-round-156 │ ├── A.cpp │ ├── B.rb │ ├── C │ │ └── Main.java │ ├── D.cpp │ ├── D.rb │ └── E.cpp ├── 258-codeforces-round-157 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 259-codeforces-round-157 │ ├── A.rb │ └── B.cpp ├── 26-codeforces-beta-round-26 │ ├── C.cpp │ ├── D.hs │ └── E.cpp ├── 260-codeforces-round-158 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 265-codeforces-round-162 │ └── D │ │ └── Solution.java ├── 266-codeforces-round-163 │ ├── A.hs │ └── E │ │ └── Solution.java ├── 269-codeforces-round-165 │ └── C.cpp ├── 27-codeforces-beta-round-27 │ ├── B.cpp │ └── C.cpp ├── 271-codeforces-round-166 │ ├── A.rb │ ├── B.cpp │ ├── C.cpp │ └── E.cpp ├── 273-codeforces-round-167 │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ ├── D │ │ └── Main.java │ └── E.cpp ├── 274-codeforces-round-168 │ └── E.cpp ├── 275-codeforces-round-168 │ └── A.py ├── 276-codeforces-round-169 │ ├── A.rb │ ├── B.rb │ ├── C │ │ └── Main.java │ └── D.rb ├── 28-codeforces-beta-round-28 │ ├── A.cpp │ ├── B.cpp │ └── D.cpp ├── 282-codeforces-round-173 │ ├── A.rb │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 283-codeforces-round-174 │ ├── A │ │ └── Main.java │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ ├── D │ │ └── Main.java │ └── E.cpp ├── 285-codeforces-round-175 │ ├── D.hs │ └── E │ │ └── Solution.java ├── 286-codeforces-round-176 │ ├── A │ │ └── Solution.java │ ├── B │ │ └── Solution.java │ ├── C │ │ └── Solution.java │ ├── D.cpp │ └── E.cpp ├── 288-codeforces-round-177 │ ├── C.cpp │ └── D │ │ └── Solution.java ├── 29-codeforces-beta-round-29 │ ├── B.hs │ ├── C.cpp │ ├── D.py │ └── E.cpp ├── 293-croc-champ-2013-round-2 │ ├── D │ │ └── Solution.java │ └── E.cpp ├── 294-codeforces-round-178 │ ├── D.cpp │ └── E.cpp ├── 297-codeforces-round-180 │ └── D.cpp ├── 299-croc-champ-2013-round-2 │ └── A.rb ├── 30-codeforces-beta-round-30 │ ├── A.py │ ├── B.py │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 300-codeforces-round-181 │ ├── A.hs │ ├── C.cpp │ └── E.cpp ├── 301-codeforces-round-182 │ ├── A │ │ └── Solution.java │ ├── B │ │ └── Solution.java │ ├── C.rb │ └── D │ │ └── Solution.java ├── 304-codeforces-round-183 │ └── C.hs ├── 305-codeforces-round-184 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 306-testing-round-6 │ ├── A.rb │ ├── B.cpp │ ├── C │ │ └── Solution.java │ └── D.cpp ├── 31-codeforces-beta-round-31 │ ├── B.py │ ├── C.cpp │ └── D.cpp ├── 313-codeforces-round-186 │ └── D │ │ └── Solution.java ├── 314-codeforces-round-187 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 317-codeforces-round-188 │ ├── A.hs │ └── B │ │ └── Solution.java ├── 319-codeforces-round-189 │ ├── A │ │ └── Solution.java │ ├── B.cpp │ ├── C │ │ └── Solution.java │ └── D.cpp ├── 32-codeforces-beta-round-32 │ ├── A.cpp │ ├── B.hs │ ├── C.hs │ └── D.cpp ├── 325-memsql-startcup-round-1 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 33-codeforces-beta-round-33 │ ├── B.cpp │ └── C.cpp ├── 331-abbyy-cup-30-finals │ └── E.cpp ├── 338-codeforces-round-196 │ ├── A │ │ └── Solution.java │ ├── B │ │ └── Solution.java │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 34-codeforces-beta-round-34 │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 343-codeforces-round-200 │ ├── A │ │ └── Main.java │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ ├── D │ │ └── Main.java │ └── E │ │ └── Main.java ├── 348-codeforces-round-202 │ ├── A │ │ └── Main.java │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ └── D │ │ └── Main.java ├── 360-codeforces-round-210 │ ├── A │ │ └── Main.java │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ └── E │ │ └── Main.java ├── 364-codeforces-round-213 │ └── E.cpp ├── 37-codeforces-beta-round-37 │ └── C.py ├── 375-codeforces-round-221 │ └── E.cpp ├── 377-codeforces-round-222 │ └── C.cpp ├── 39-school-team-contest-1 │ ├── A.cpp │ └── H.hs ├── 396-codeforces-round-232 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 416-codeforces-round-241 │ ├── A.java │ ├── B.java │ ├── C.java │ └── E.java ├── 418-rcc-2014-warmup │ ├── A │ │ └── Main.java │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ ├── D.cpp │ └── E │ │ └── Main.java ├── 425-codeforces-round-243 │ ├── A │ │ └── Main.java │ ├── B │ │ └── Main.java │ ├── C │ │ └── Main.java │ ├── D │ │ └── Main.java │ └── E │ │ └── Main.java ├── 429-codeforces-round-245 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 434-codeforces-round-248 │ ├── A │ │ └── Main.java │ ├── B.cpp │ ├── C │ │ └── Main.java │ ├── D │ │ └── Main.java │ └── E.cpp ├── 436-zepto-code-rush-2014 │ └── E.cpp ├── 44-school-team-contest-2 │ └── F.cpp ├── 45-school-team-contest-3 │ ├── B.cpp │ └── G.cpp ├── 452-memsql-startcup-2.0-round-1 │ └── E │ │ └── Main.java ├── 461-codeforces-round-263 │ ├── A │ │ └── Main.java │ ├── B │ │ └── Main.java │ ├── C.cpp │ ├── D.cpp │ └── E │ │ └── Main.java ├── 464-codeforces-round-265 │ └── E.cpp ├── 478-codeforces-round-273 │ └── E.cpp ├── 51-codeforces-beta-round-48 │ └── D.cpp ├── 54-codeforces-beta-round-50 │ └── E.cpp ├── 542-vk-cup-2015-round-3 │ ├── A.cpp │ ├── B.cpp │ ├── C │ │ └── Main.java │ ├── D.cpp │ ├── E.cpp │ └── F │ │ └── Main.java ├── 546-codeforces-round-304 │ └── C.hs ├── 547-codeforces-round-305 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 549-looksery-cup-2015 │ ├── A.hs │ ├── B.hs │ ├── C.hs │ ├── D.hs │ ├── F.cpp │ ├── G.hs │ └── H.hs ├── 55-codeforces-beta-round-55 │ └── A.rb ├── 550-codeforces-round-306 │ ├── A.hs │ ├── B.hs │ ├── C.hs │ └── D.hs ├── 551-codeforces-round-307 │ ├── B.hs │ └── C.cs ├── 552-codeforces-round-308 │ ├── A.hs │ ├── B.hs │ ├── C.hs │ ├── D.hs │ └── E.py ├── 555-codeforces-round-310 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 559-codeforces-round-313 │ └── E.cpp ├── 568-codeforces-round-315 │ └── E.cpp ├── 573-codeforces-round-318 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── E.cpp ├── 58-codeforces-beta-round-54 │ └── C.cpp ├── 60-codeforces-beta-round-56 │ ├── C │ │ └── Solution.java │ └── E.cpp ├── 603-codeforces-round-334 │ ├── A.hs │ ├── C.hs │ └── E.cpp ├── 623-aim-tech-round │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 66-codeforces-beta-round-61 │ └── D.rb ├── 663-codeforces-round-347 │ └── E.cpp ├── 668-codeforces-round-348 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── F.cpp ├── 671-codeforces-round-352 │ ├── C.cpp │ └── D.cpp ├── 674-codeforces-round-351 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ └── G.cpp ├── 679-codeforces-round-356 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 68-codeforces-beta-round-62 │ └── D.cpp ├── 685-codeforces-round-359 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 687-codeforces-round-360 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 700-codeforces-round-364 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 704-codeforces-round-366 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ └── D.cpp ├── 708-aim-tech-round-3 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 71-codeforces-beta-round-65 │ └── A.py ├── 713-codeforces-round-371 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 715-codeforces-round-372 │ ├── A.py │ ├── B.cpp │ ├── C.cpp │ ├── D.py │ └── E.cpp ├── 718-codeforces-round-373 │ ├── A.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 80-codeforces-beta-round-69 │ └── A.rb ├── 81-yandex-algorithm-open-2011-qualification-1 │ └── A.cpp ├── 82-yandex-algorithm-2011-qualification-2 │ └── A.py ├── 83-codeforces-beta-round-72 │ └── D.cpp ├── 833-codeforces-round-426 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 84-codeforces-beta-round-72 │ └── A.pl ├── 840-codeforces-round-429 │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── 86-yandex-algorithm-2011-round-2 │ └── A.rb ├── 87-codeforces-beta-round-73 │ └── C.cpp ├── 908-good-bye-2017 │ ├── A.py │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ └── G.cpp ├── 91-codeforces-beta-round-75 │ ├── A.rb │ └── C.cpp └── 96-codeforces-beta-round-77 │ ├── A.hs │ └── D.cpp ├── google-code-jam ├── emea-semifinal-2008 │ └── C │ │ └── C.cpp ├── google-code-jam-2015 │ └── round-3 │ │ ├── A.cpp │ │ └── B.cpp ├── qualification-round-2012 │ ├── A │ │ ├── A.cpp │ │ ├── A.py │ │ ├── A.text │ │ └── parser.py │ ├── B │ │ ├── B.py │ │ └── Main.java │ └── C │ │ ├── C.cpp │ │ └── C.py └── round-1a-2012 │ ├── A │ └── A.py │ └── B │ └── B.cpp ├── hdoj ├── p1695.cpp ├── p3530.cpp ├── p3948.cpp ├── p4389.cpp ├── p4436.cpp ├── p4524 │ └── Main.java ├── p4625.cpp ├── p4626.cpp ├── p4668.cpp ├── p4680.cpp ├── p5470.cpp ├── p5489.cpp ├── p5756.cpp └── p5759.cpp ├── multi-university-trainings └── 2011 │ ├── contest-16 │ ├── G.cpp │ ├── H.cpp │ └── I.cpp │ └── contest-3 │ └── C.cpp ├── my-contests ├── 2012-03-13-stoi-2012 │ ├── 2012年汕头市选成绩.xlsx │ ├── junior │ │ └── problems │ │ │ └── problems.tex │ └── senior │ │ ├── makers.zip │ │ ├── makers │ │ ├── A-50.cpp │ │ ├── A.cpp │ │ ├── Agen.py │ │ ├── Atest.sh │ │ ├── B-50.cpp │ │ ├── B.cpp │ │ ├── Bgen.py │ │ ├── Btest.sh │ │ ├── C-50.cpp │ │ ├── C.cpp │ │ ├── Cgen.py │ │ ├── Ctest.sh │ │ ├── D-30.cpp │ │ ├── D.cpp │ │ ├── Dgen.py │ │ ├── Dtest.sh │ │ └── gen-all.sh │ │ └── problems │ │ └── problems.tex └── 2015-06-14-sichuan-province-contest │ ├── lib │ ├── checkers │ │ ├── acmp.cpp │ │ ├── caseicmp.cpp │ │ ├── casencmp.cpp │ │ ├── casewcmp.cpp │ │ ├── dcmp.cpp │ │ ├── fcmp.cpp │ │ ├── hcmp.cpp │ │ ├── icmp.cpp │ │ ├── lcmp.cpp │ │ ├── ncmp.cpp │ │ ├── pointscmp.cpp │ │ ├── rcmp.cpp │ │ ├── rcmp4.cpp │ │ ├── rcmp6.cpp │ │ ├── rcmp9.cpp │ │ ├── rncmp.cpp │ │ ├── uncmp.cpp │ │ ├── wcmp.cpp │ │ └── yesno.cpp │ ├── docs │ │ └── read.me │ ├── generators │ │ ├── bgen.cpp │ │ ├── igen.cpp │ │ ├── iwgen.cpp │ │ ├── multigen.cpp │ │ ├── sgen.cpp │ │ └── swgen.cpp │ ├── stress.sh │ ├── testlib.h │ ├── testlib.rb │ └── validators │ │ ├── bipartite-graph-validator.cpp │ │ ├── ival.cpp │ │ ├── nval.cpp │ │ ├── sval.cpp │ │ ├── undirected-graph-validator.cpp │ │ └── undirected-tree-validator.cpp │ ├── problems │ ├── carry │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── slow.cpp │ │ │ ├── solution.cpp │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ └── validator.cpp │ ├── censor │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── 004.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── random.exe │ │ │ ├── random_ab.cpp │ │ │ ├── random_ab.exe │ │ │ ├── random_fib.cpp │ │ │ ├── random_fib.exe │ │ │ ├── slow.cpp │ │ │ ├── solution.cpp │ │ │ ├── solution.exe │ │ │ ├── stress.sh │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ ├── validator.cpp │ │ │ └── validator.exe │ ├── cover │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── slow.cpp │ │ │ ├── solution.cpp │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ └── validator.cpp │ ├── doall.sh │ ├── easy │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── 004.hand │ │ │ ├── 005.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── solution.cpp │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ └── validator.cpp │ ├── necklace │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── slow.cpp │ │ │ ├── solution.cpp │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ ├── validator │ │ │ └── validator.cpp │ ├── party │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── 004.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── slow.cpp │ │ │ ├── solution.cpp │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ └── validator.cpp │ ├── rectangle │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── figure.png │ │ │ ├── figure.sketch │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── slow.py │ │ │ ├── solution.cpp │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ └── validator.cpp │ ├── rmq │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── random_no.cpp │ │ │ ├── slow.cpp │ │ │ ├── solution.cpp │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ ├── validator.cpp │ │ │ └── wrong.cpp │ ├── travel │ │ ├── check.cpp │ │ └── src │ │ │ ├── 001.hand │ │ │ ├── 002.hand │ │ │ ├── 003.hand │ │ │ ├── 004.hand │ │ │ ├── doall.rb │ │ │ ├── doall.sh │ │ │ ├── problem.md │ │ │ ├── random.cpp │ │ │ ├── random_dis.cpp │ │ │ ├── slow.cpp │ │ │ ├── slow2.cpp │ │ │ ├── solution.cpp │ │ │ ├── stress.sh │ │ │ ├── testlib.h │ │ │ ├── testlib.rb │ │ │ ├── validator.cpp │ │ │ ├── wrong.cpp │ │ │ └── wrong2.cpp │ └── turn │ │ ├── check.cpp │ │ └── src │ │ ├── 001.hand │ │ ├── 002.hand │ │ ├── 003.hand │ │ ├── 004.hand │ │ ├── 005.hand │ │ ├── 006.hand │ │ ├── doall.rb │ │ ├── doall.sh │ │ ├── problem.md │ │ ├── random.cpp │ │ ├── solution.cpp │ │ ├── testlib.h │ │ ├── testlib.rb │ │ └── validator.cpp │ └── statement │ ├── doall.rb │ ├── doall.sh │ ├── figure.png │ └── template.tex ├── ontak └── ontak-2010 │ ├── kla.cpp │ ├── pod.cpp │ ├── szc.cpp │ ├── wie.cpp │ └── wyd.cpp ├── pe.h ├── poi ├── poi-x │ ├── aut.cpp │ ├── cia.cpp │ ├── cze.cpp │ ├── lic.cpp │ ├── mal.cpp │ ├── mas.cpp │ ├── ply.cpp │ ├── pol.cpp │ ├── prz.cpp │ ├── ska.cpp │ ├── sum.cpp │ ├── tas.cpp │ └── tro.cpp └── poi-xi │ ├── szn.cpp │ └── tur.cpp ├── poj ├── p1753.cpp ├── p2186.cpp ├── p2378.cpp ├── p2761.cpp ├── p2923.cpp ├── p2942.cpp ├── p3155.cpp └── p3468.cpp ├── project-euler ├── p103.cpp ├── p104.py ├── p105.py ├── p106.cpp ├── p107.py ├── p108.py ├── p109.py ├── p110.py ├── p111.cpp ├── p112.py ├── p113.py ├── p114.py ├── p116.py ├── p117.py ├── p118.cpp ├── p119.py ├── p120.py ├── p121.py ├── p122.cpp ├── p123.cpp ├── p124.cpp ├── p125.cpp ├── p126.cpp ├── p127.cpp ├── p128.cpp ├── p131.cpp ├── p132.py ├── p133.cpp ├── p134.cpp ├── p135.cpp ├── p136.cpp ├── p137.py ├── p138.py ├── p139.cpp ├── p140.py ├── p141.cpp ├── p142.cpp ├── p143.cpp ├── p144.cpp ├── p145.cpp ├── p146.cpp ├── p147.py ├── p148.py ├── p149.py ├── p150.cpp ├── p151.py ├── p152.py ├── p153.cpp ├── p154.cpp ├── p154.py ├── p155.cpp ├── p156.cpp ├── p157.py ├── p158.py ├── p159.cpp ├── p160.py ├── p161.cpp ├── p162.py ├── p163.cpp ├── p164.py ├── p166.cpp ├── p167.cpp ├── p168.py ├── p169.py ├── p170.cpp ├── p171.py ├── p173.py ├── p174.cpp ├── p175.py ├── p176.py ├── p177.cpp ├── p178.cpp ├── p179.cpp ├── p180.py ├── p181 │ └── Main.java ├── p182.py ├── p183.py ├── p184.cpp ├── p185.cpp ├── p186.py ├── p187.cpp ├── p188.py ├── p189.cpp ├── p190.py ├── p191.py ├── p192.py ├── p193.cpp ├── p194.cpp ├── p195.py ├── p196.cpp ├── p197.py ├── p198.cpp ├── p199.py ├── p200.cpp ├── p201.cpp ├── p202.py ├── p203.py ├── p204.py ├── p205.py ├── p206.py ├── p207.py ├── p208.py ├── p209.py ├── p210.cpp ├── p211.cpp ├── p212.cpp ├── p213.cpp ├── p214.cpp ├── p215.cpp ├── p216.cpp ├── p217.py ├── p219.py ├── p220.py ├── p225.cpp ├── p227.sage ├── p228.py ├── p229.cpp ├── p230.py ├── p231.cpp ├── p232.cpp ├── p234.cpp ├── p235.py ├── p237.cpp ├── p238.cpp ├── p239.py ├── p240.py ├── p242.py ├── p250.cpp ├── p258.cpp ├── p269 │ └── p269.cpp ├── p282.cpp ├── p296.cpp ├── p300 │ └── p300.cpp ├── p301 │ └── p301.hs ├── p303 │ └── p303.py ├── p306 │ └── p306.cpp ├── p309.cpp ├── p310 │ └── Main.java ├── p318 │ └── p318.py ├── p320 │ └── p320.cpp ├── p326 │ └── p326.py ├── p337 │ └── p337.cpp ├── p340 │ └── p340.hs ├── p342 │ └── p342.cpp ├── p345 │ └── p345.py ├── p346.py ├── p347 │ └── p347.cpp ├── p348.cpp ├── p349.py ├── p350.cpp ├── p351 │ └── p351.py ├── p357 │ └── p357.cpp ├── p360 │ └── p360.cpp ├── p364 │ └── p364.cpp ├── p365 │ └── p365.py ├── p375.cpp ├── p377 │ └── p377.rb ├── p379 │ └── p379.cpp ├── p383 │ └── p383.cpp ├── p388 │ └── p388.py ├── p400 │ └── p400.py ├── p402 │ └── p402.py ├── p407 │ └── p407.cpp ├── p409 │ └── p409.cpp ├── p411 │ └── p411.cpp ├── p412 │ └── p412.py ├── p413 │ └── p413.py ├── p416 │ ├── p416.cpp │ └── p416.hs ├── p435 │ └── p435.hs ├── p439 │ └── p439-backup.py ├── p452 │ └── p452.cpp ├── p453 │ └── p453.cpp ├── p457.cpp ├── p458.sage ├── p468.cpp ├── p486 │ ├── step1.sage │ ├── step2.cpp │ └── step3.sage ├── p487.cpp ├── p488 │ └── p488.py ├── p490.sage ├── p491 │ └── p491.cpp ├── p495.cpp ├── p499.cpp ├── p500 │ └── p500.cpp ├── p502 │ └── p502.cpp ├── p503 │ └── p503.py ├── p509 │ └── p509.py ├── p511 │ └── p511.cpp ├── p515 │ └── Main.hs ├── p516 │ └── p516.cpp ├── p518 │ └── p518.cpp ├── p523 │ └── p523.py ├── p528.py ├── p529 │ └── p529.cpp ├── p544 │ └── p544.cpp ├── p545.cpp ├── p546 │ └── p546.py ├── p548 │ └── p548.cpp ├── p550 │ └── p550.cpp ├── p551 │ └── p551.py ├── p552.cpp ├── p553 │ └── p553.cpp ├── p554 │ └── p554.py ├── p555.py ├── p559 │ └── p559.cpp ├── p569.cpp ├── p571.cpp ├── p588.py ├── p590.cpp ├── p593.cpp ├── p596.py ├── p598.py ├── p599.sage ├── p600.py ├── p601.sage ├── p602.py ├── p603.sage ├── p604.py ├── p605.py ├── p609.cpp ├── p612.cpp └── p78 │ └── solution.cpp ├── regional ├── china-final-2016 │ └── I.cpp ├── dhaka-2012 │ └── K.cpp ├── fuzhou-2010 │ └── C-wa.cpp ├── latin-america-2012 │ └── J.cpp └── neerc-2007 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── E │ └── Main.java │ └── L.cpp ├── sgu ├── p100.cpp ├── p101.cpp ├── p102.cpp ├── p103.cpp ├── p104.cpp ├── p105.cpp ├── p106.cpp ├── p107.cpp ├── p108.cpp ├── p109.cpp ├── p110.cpp ├── p111.cpp ├── p112 │ └── Solution.java ├── p113.cpp ├── p114.cpp ├── p115.cpp ├── p116.cpp ├── p117.cpp ├── p118.cpp ├── p120.cpp ├── p121.cpp ├── p122 │ └── Solution.java ├── p123 │ └── Solution.java ├── p124.cpp ├── p125.cpp ├── p126.cpp ├── p127.cpp ├── p128.cpp ├── p129.cpp ├── p130.cpp ├── p131.cpp ├── p132.cpp ├── p133 │ └── Solution.java ├── p134.cpp ├── p135.cpp ├── p136.cpp ├── p137.cpp ├── p138.cpp ├── p139.cpp ├── p140.cpp ├── p141.cpp ├── p142.cpp ├── p143.cpp ├── p144.cpp ├── p145.cpp ├── p146 │ └── Solution.java ├── p147.cpp ├── p148.cpp ├── p149.cpp ├── p150.cpp ├── p151.cpp ├── p152.cpp ├── p153.cpp ├── p154.cpp ├── p155.cpp ├── p156.cpp ├── p157.cpp ├── p158.cpp ├── p159 │ └── Solution.java ├── p160.cpp ├── p161 │ └── Solution.java ├── p162.cpp ├── p163.cpp ├── p164.cpp ├── p165.cpp ├── p166.cpp ├── p167.cpp ├── p168.cpp ├── p169.cpp ├── p170.cpp ├── p171.cpp ├── p172.cpp ├── p173.cpp ├── p174.cpp ├── p175.cpp ├── p176.cpp ├── p177.cpp ├── p178.cpp ├── p179.cpp ├── p180.cpp ├── p181.cpp ├── p182 │ └── Solution.java ├── p183.cpp ├── p184.cpp ├── p185.cpp ├── p186.cpp ├── p187.cpp ├── p188.cpp ├── p189 │ └── Solution.java ├── p190.cpp ├── p191.cpp ├── p192 │ └── Solution.java ├── p194.cpp ├── p195.cpp ├── p196.cpp ├── p197 │ └── Solution.java ├── p198.cpp ├── p199.cpp ├── p200.cpp ├── p201 │ └── Solution.java ├── p202 │ └── Solution.java ├── p203.cpp ├── p205 │ └── Solution.java ├── p206 │ └── Solution.java ├── p207 │ └── Solution.java ├── p208.cpp ├── p209.cpp ├── p210.cpp ├── p212.cpp ├── p213.cpp ├── p214.cpp ├── p216.cpp ├── p218.cpp ├── p220 ├── p221 │ └── Solution.java ├── p222 │ └── Solution.java ├── p223.cpp ├── p224.cpp ├── p226.cpp ├── p228.cpp ├── p229.cpp ├── p230 │ └── Solution.java ├── p231.cpp ├── p239 │ └── Solution.java ├── p247 │ └── Solution.java ├── p248 │ └── Solution.java ├── p249.cpp ├── p259 │ └── Solution.java ├── p262.cpp ├── p269 │ └── Solution.java ├── p270.cpp ├── p275 │ └── Solution.java ├── p277.cpp ├── p278.cpp ├── p279.cpp ├── p280.cpp ├── p281.cpp ├── p282.cpp ├── p284 │ └── Solution.java ├── p286.cpp ├── p289.cpp ├── p294 │ └── Solution.java ├── p296 │ └── Solution.java ├── p297 │ └── Solution.java ├── p298.cpp ├── p299 │ └── Solution.java ├── p304.cpp ├── p305.cpp ├── p307.cpp ├── p309.cpp ├── p310 │ └── Solution.java ├── p311.cpp ├── p317.cpp ├── p318 │ └── Solution.java ├── p319.cpp ├── p321.cpp ├── p322.cpp ├── p323.cpp ├── p325.cpp ├── p326.cpp ├── p327 │ └── Solution.java ├── p330 │ └── Solution.java ├── p337.cpp ├── p339.cpp ├── p342 │ └── Solution.java ├── p344.cpp ├── p347.cpp ├── p350 │ └── Solution.java ├── p352.cpp ├── p354.cpp ├── p355.cpp ├── p356 │ └── Solution.java ├── p357 │ └── Solution.java ├── p358 │ └── Solution.java ├── p361.cpp ├── p362 │ └── Solution.java ├── p365 │ └── Solution.java ├── p367.cpp ├── p370.cpp ├── p372.cpp ├── p374 │ └── Solution.java ├── p375.cpp ├── p379 │ └── Solution.java ├── p381.cpp ├── p384.cpp ├── p389 │ └── Solution.java ├── p390 │ └── Solution.java ├── p397.cpp ├── p398.cpp ├── p404 │ └── Solution.java ├── p405 │ └── Solution.java ├── p406 │ └── Solution.java ├── p407 │ └── Solution.java ├── p409.cpp ├── p410.cpp ├── p411.cpp ├── p415 │ └── Solution.java ├── p443 │ └── Solution.java ├── p444.cpp ├── p455.cpp ├── p458.cpp ├── p502.cpp ├── p527.cpp ├── p529.cpp └── p536.cpp ├── soj └── p3098.cpp ├── spoj ├── COT.cpp └── GEN.cpp ├── timus ├── p1132.cpp ├── p1173.cpp ├── p1469.cpp ├── p1855.cpp └── p1978.cpp ├── topcoder ├── AkariDaisukiDiv1.java ├── AntsMeet.java ├── ArtShift.java ├── BinaryPolynomialDivOne.java ├── BlackWhiteMagic.java ├── CandidateKeys.java ├── CarrotBoxes.java ├── CirclesGame.java ├── ColorfulCards.java ├── ColorfulCookie.java ├── DrivingAround.java ├── DropCoins.java ├── EllysXors.java ├── EqualizeStrings.java ├── FavouriteDigits.java ├── FleaCircus.java ├── FoxAndVacation.java ├── FoxListeningToMusic.java ├── GuessTheNumberGame.java ├── ImportantSequence.java ├── KleofasTail.java ├── MinimumLiars.java ├── MonochromePuzzle.java ├── MonstersValley.java ├── MuddyRoad.java ├── NewArenaPassword.java ├── Nisoku.java ├── OptimalQueues.java ├── OrderedNim.java ├── PatrolRoute.java ├── PerfectPermutation.java ├── PrefixFreeSuperset.java ├── RabbitNumbering.java ├── RandomColoring.java ├── RandomSort.cpp ├── ReverseResources.java ├── RowOfColors.java ├── Rumor.java ├── SPartition.java ├── STable.java ├── StrangeCountry.java ├── TagalogDictionary.java ├── TheDivisionGame.cpp ├── TheLuckyString.cpp ├── TrappingRabbit.java ├── TripleStrings.java ├── TwoLotteryGames.java ├── single-round-match │ ├── single-round-match-512 │ │ └── PickAndDelete.java │ ├── single-round-match-518 │ │ ├── ConvexSequence.java │ │ ├── LargestSubsequence.java │ │ └── Nim.java │ ├── single-round-match-519 │ │ └── VerySmoothDecompositions.cpp │ ├── single-round-match-539 │ │ └── FoxBomb.java │ ├── single-round-match-540 │ │ └── ProductQuery.cpp │ ├── single-round-match-541 │ │ └── XorLife.java │ ├── single-round-match-544 │ │ └── SplittingFoxes.java │ ├── single-round-match-545 │ │ └── SetAndSet.java │ ├── single-round-match-546 │ │ └── FleaCircus.java │ ├── single-round-match-548 │ │ └── KingdomAndCities.java │ ├── single-round-match-549 │ │ ├── CosmicBlocks.cpp │ │ └── PointyWizardHats.cpp │ ├── single-round-match-550 │ │ ├── CheckerExpansion.java │ │ ├── ConversionMachine.java │ │ └── RotatingBot.java │ ├── single-round-match-551 │ │ ├── ColorfulChocolates.java │ │ ├── ColorfulWolves.java │ │ └── SweetFruits.cpp │ ├── single-round-match-552 │ │ ├── FoxAndFlowerShopDivOne.cpp │ │ ├── FoxPaintingBalls.java │ │ └── HolyNumbers.cpp │ ├── single-round-match-553 │ │ ├── Suminator.java │ │ ├── TwoConvexShapes.cpp │ │ └── YamanoteLine.java │ ├── single-round-match-554 │ │ ├── TheBrickTowerEasyDivOne.java │ │ ├── TheBrickTowerHardDivOne.cpp │ │ └── TheBrickTowerMediumDivOne.java │ ├── single-round-match-555 │ │ ├── CuttingBitString.java │ │ ├── MapGuessing.java │ │ └── XorBoard.java │ ├── single-round-match-556 │ │ ├── LeftRightDigitsGame2.java │ │ ├── OldBridges.java │ │ └── XorTravelingSalesman.java │ ├── single-round-match-557 │ │ ├── FoxAndMountainEasy.java │ │ ├── Incubator.java │ │ └── XorAndSum.java │ ├── single-round-match-558 │ │ ├── Ear.java │ │ ├── Stamp.java │ │ └── SurroundingGame.java │ ├── single-round-match-559 │ │ ├── CircusTents.java │ │ ├── HatRack.java │ │ └── HyperKnight.java │ ├── single-round-match-560 │ │ ├── BoundedOptimization.java │ │ ├── DrawingPointsDivOne.java │ │ └── TomekPhone.java │ ├── single-round-match-561 │ │ ├── CirclesGame.java │ │ ├── ICPCBalloons.java │ │ └── Orienteering.java │ ├── single-round-match-562 │ │ ├── CheckerFreeness.java │ │ ├── InducedSubgraphs.java │ │ └── PastingPaintingDivOne.java │ ├── single-round-match-563 │ │ ├── CoinsGame.java │ │ ├── FoxAndHandle.java │ │ └── SpellCards.java │ ├── single-round-match-564 │ │ ├── AlternateColors2.java │ │ ├── DefectiveAddition.java │ │ └── KnightCircuit2.java │ ├── single-round-match-565 │ │ └── UnknownTree.java │ ├── single-round-match-566 │ │ ├── FencingPenguins.java │ │ ├── PenguinEmperor.java │ │ └── PenguinSledding.java │ ├── single-round-match-567 │ │ ├── Mountains.java │ │ ├── StringGame.java │ │ └── TheSquareRootDilemma.java │ ├── single-round-match-568 │ │ ├── BallsSeparating.java │ │ ├── DisjointSemicircles.java │ │ └── EqualSums.java │ ├── single-round-match-569 │ │ ├── MegaFactorial.java │ │ ├── TheDevice.java │ │ └── TheJediTest.java │ ├── single-round-match-570 │ │ ├── CentaurCompany.java │ │ ├── CurvyonRails.java │ │ └── RobotHerb.java │ ├── single-round-match-571 │ │ ├── CandyOnDisk.java │ │ ├── FoxAndMp3.java │ │ └── MagicMolecule.java │ ├── single-round-match-572 │ │ ├── NextAndPrev.java │ │ └── SkiResorts.java │ ├── single-round-match-573 │ │ ├── SkiResorts.java │ │ ├── TeamContest.java │ │ └── WolfPack.java │ ├── single-round-match-574 │ │ ├── PolygonTraversal.java │ │ ├── TheNumberGame.java │ │ └── Tunnels.java │ ├── single-round-match-575 │ │ ├── TheNumberGameDivOne.java │ │ ├── TheSwapsDivOne.java │ │ └── TheTilesDivOne.java │ ├── single-round-match-576 │ │ ├── ArcadeManao.java │ │ ├── CharacterBoard.cpp │ │ └── TheExperiment.java │ ├── single-round-match-577 │ │ ├── BoardPainting.java │ │ ├── EllysChessboard.java │ │ └── EllysRoomAssignmentsDiv1.java │ ├── single-round-match-578 │ │ ├── DeerInZooDivOne.java │ │ ├── GooseInZooDivOne.java │ │ └── WolfInZooDivOne.cpp │ ├── single-round-match-579 │ │ ├── RockPaperScissors.java │ │ ├── TravellingPurchasingMan.java │ │ └── UndoHistory.java │ ├── single-round-match-580 │ │ ├── EelAndRabbit.java │ │ ├── ShoutterDiv1.java │ │ └── WallGameDiv1.java │ ├── single-round-match-581 │ │ ├── SurveillanceSystem.java │ │ ├── TreeUnion.java │ │ └── YetAnotherBoardGame.java │ ├── single-round-match-582 │ │ ├── ColorfulBuilding.java │ │ ├── SemiPerfectPower.java │ │ └── SpaceWarDiv1.java │ ├── single-round-match-583 │ │ ├── RandomPaintingOnABoard.java │ │ ├── TravelOnMars.java │ │ └── TurnOnLamps.java │ ├── single-round-match-584 │ │ ├── Egalitarianism.java │ │ ├── Excavations.java │ │ └── FoxTheLinguist.java │ ├── single-round-match-585 │ │ ├── EnclosingTriangle.java │ │ ├── LISNumber.java │ │ └── TrafficCongestion.java │ ├── single-round-match-586 │ │ ├── History.java │ │ ├── PiecewiseLinearFunction.java │ │ └── StringWeight.java │ ├── single-round-match-587 │ │ ├── JumpFurther.java │ │ ├── ThreeColorability.java │ │ └── TriangleXor.java │ ├── single-round-match-588 │ │ ├── GameInDarknessDiv1.java │ │ └── KeyDungeonDiv1.java │ ├── single-round-match-589 │ │ ├── FlippingBitsDiv1.java │ │ ├── GearsDiv1.java │ │ └── GooseTattarrattatDiv1.java │ ├── single-round-match-590 │ │ ├── FoxAndChess.java │ │ ├── FoxAndCity.java │ │ └── XorCards.java │ ├── single-round-match-591 │ │ ├── PyramidSequences.java │ │ ├── StringPath.java │ │ └── TheTree.java │ ├── single-round-match-592 │ │ ├── LittleElephantAndBalls.java │ │ ├── LittleElephantAndPermutationDiv1.cpp │ │ └── SplittingFoxes2.java │ ├── single-round-match-593 │ │ ├── HexagonalBoard.java │ │ ├── MayTheBestPetWin.java │ │ └── WolfDelaymasterHard.java │ ├── single-round-match-594 │ │ ├── AstronomicalRecords.java │ │ ├── FoxAndAvatar.java │ │ └── FoxAndGo3.java │ ├── single-round-match-595 │ │ ├── Constellation.java │ │ ├── LittleElephantAndIntervalsDiv1.java │ │ └── LittleElephantAndRGB.java │ ├── single-round-match-596 │ │ ├── BitwiseAnd.java │ │ ├── IncrementAndDoubling.java │ │ └── SparseFactorial.java │ ├── single-round-match-597 │ │ ├── ConvexPolygonGame.java │ │ ├── LittleElephantAndBoard.java │ │ ├── LittleElephantAndString.java │ │ └── LittleElephantAndSubset.cpp │ ├── single-round-match-598 │ │ ├── FoxAndFencing.java │ │ └── TPS.java │ ├── single-round-match-599 │ │ ├── FindPolygons.java │ │ └── SimilarNames.java │ ├── single-round-match-600 │ │ ├── LotsOfLines.java │ │ ├── ORSolitaire.java │ │ └── PalindromeMatrix.cpp │ ├── single-round-match-601 │ │ ├── WinterAndPresents.java │ │ ├── WinterAndShopping.cpp │ │ └── WinterAndSnowmen.java │ ├── single-round-match-602 │ │ ├── PilingRectsDiv1.cpp │ │ └── TypoCoderDiv1.java │ ├── single-round-match-603 │ │ ├── MaxMinTreeGame.java │ │ ├── PairsOfStrings.java │ │ └── SumOfArrays.cpp │ ├── single-round-match-604 │ │ ├── FamilyCrest.cpp │ │ ├── FoxConnection.java │ │ └── PowerOfThree.java │ ├── single-round-match-605 │ │ ├── AlienAndHamburgers.java │ │ ├── AlienAndPermutation.cpp │ │ └── AlienAndSetDiv1.java │ ├── single-round-match-606 │ │ ├── EllysNumberGuessing.java │ │ ├── EllysPairing.java │ │ └── Subcube.java │ ├── single-round-match-607 │ │ ├── CombinationLockDiv1.java │ │ └── PalindromicSubstringsDiv1.java │ ├── single-round-match-608 │ │ ├── BigO.java │ │ ├── MysticAndCandies.java │ │ └── OneDimensionalRobot.java │ ├── single-round-match-609 │ │ ├── LotteryTree.java │ │ ├── MagicalStringDiv1.java │ │ └── PackingBallsDiv1.java │ ├── single-round-match-610 │ │ ├── AlbertoTheAviator.java │ │ ├── MiningGoldHard.java │ │ └── TheMatrix.java │ ├── single-round-match-611 │ │ ├── Egalitarianism2.java │ │ ├── ElephantDrinking.java │ │ └── LCMSet.java │ ├── single-round-match-612 │ │ ├── EmoticonsDiv1.java │ │ ├── LeftAndRightHandedDiv1.java │ │ └── SpecialCells.java │ ├── single-round-match-613 │ │ ├── RandomGCD.java │ │ ├── TaroCheckers.java │ │ └── TaroFriends.java │ ├── single-round-match-614 │ │ ├── CycleColoring.java │ │ ├── MinimumSquare.java │ │ └── TorusSailing.java │ ├── single-round-match-615 │ │ ├── AlternativePiles.java │ │ ├── AmebaDiv1.java │ │ └── LongLongTripDiv1.java │ ├── single-round-match-616 │ │ ├── ColorfulCoins.java │ │ ├── ThreeLLogo.cpp │ │ └── WakingUp.java │ ├── single-round-match-617 │ │ ├── FarStrings.java │ │ ├── MyLongCake.java │ │ └── PieOrDolphin.java │ ├── single-round-match-618 │ │ ├── Family.java │ │ ├── LongWordsDiv1.java │ │ └── MovingRooksDiv1.java │ ├── single-round-match-619 │ │ ├── GoodCompanyDivOne.java │ │ ├── SimilarSequencesAnother.java │ │ └── SplitStoneGame.java │ ├── single-round-match-620 │ │ ├── CandidatesSelection.cpp │ │ ├── PairGame.cpp │ │ └── PerfectSquare.java │ ├── single-round-match-621 │ │ ├── RadioRange.java │ │ ├── StringsNightmareAgain.java │ │ └── TreesAnalysis.java │ ├── single-round-match-622 │ │ ├── BuildingRoutes.java │ │ ├── Ethernet.java │ │ └── FibonacciXor.cpp │ ├── single-round-match-623 │ │ ├── CatchTheBeat.java │ │ └── UniformBoard.java │ ├── single-round-match-624 │ │ ├── BuildingHeights.java │ │ ├── DrivingPlans.cpp │ │ └── TreeColoring.cpp │ ├── single-round-match-630 │ │ ├── Egalitarianism3.java │ │ └── SuffixArrayDiv1.java │ ├── single-round-match-655 │ │ ├── BichromePainting.java │ │ ├── BichromeSky.cpp │ │ └── Nine.java │ ├── single-round-match-657 │ │ ├── PolynomialGCD.cpp │ │ └── RookGraph.cpp │ ├── single-round-match-658 │ │ └── OddEvenTree.java │ ├── single-round-match-659 │ │ ├── ApplesAndOrangesEasy.java │ │ ├── CampLunch.cpp │ │ └── PublicTransitHard.cpp │ ├── single-round-match-666 │ │ ├── CountBinarySequences.cpp │ │ ├── SumOverPermutations.java │ │ └── WalkOverATree │ │ │ └── WalkOverATree.go │ ├── single-round-match-675 │ │ └── BichromeSky2.cpp │ ├── single-round-match-691 │ │ ├── Moneymanager.cpp │ │ ├── Sunnygraphs.cpp │ │ └── Undivisors.cpp │ ├── single-round-match-692 │ │ ├── HardProof.cpp │ │ ├── LinenCenter.cpp │ │ └── TreeSums.cpp │ ├── single-round-match-693 │ │ ├── BiconnectedDiv1.cpp │ │ ├── BipartiteConstruction.cpp │ │ └── TriangleFree.cpp │ ├── single-round-match-696 │ │ ├── Clicounting.cpp │ │ ├── Gperm.cpp │ │ └── Substreeng.cpp │ └── single-round-match-697 │ │ ├── ConnectedStates.cpp │ │ ├── DivisibleSetDiv1.cpp │ │ └── XorOrderDiv1.cpp └── topcoder-open │ ├── topcoder-open-2011 │ └── semifinal-1 │ │ └── MatrixPower.java │ ├── topcoder-open-2012 │ ├── round-1A │ │ ├── EllysFractions.java │ │ ├── EllysJuice.java │ │ └── EllysLights.java │ ├── round-1B │ │ ├── FoxAndDoraemon.java │ │ ├── FoxAndKgram.java │ │ └── FoxAndPhotography.java │ ├── round-1C │ │ ├── PasswordXGrid.java │ │ ├── PasswordXGuessing.java │ │ └── PasswordXPalindrome.java │ ├── round-2A │ │ ├── CucumberWatering.java │ │ ├── EvenPaths.java │ │ └── SwitchesAndLamps.java │ ├── round-2B │ │ ├── BlurredDartboard.java │ │ ├── HeavyBooks.java │ │ └── SequenceTransmission.java │ ├── round-2C │ │ ├── FlattenOut.java │ │ ├── GreedyTravelingSalesman.java │ │ └── ThreePoints.java │ ├── round-3A │ │ ├── ChromaticNumber.java │ │ ├── CowsMooing.java │ │ └── FoxAndCake.cpp │ ├── round-3B │ │ ├── CrossingTheRiver.java │ │ ├── ElevenMultiples.java │ │ └── PQHulls.java │ ├── semifinal-1 │ │ ├── FloodFill3D.java │ │ ├── StRings.cpp │ │ └── YetAnotherNim.java │ ├── semifinal-2 │ │ ├── BallRemoval.java │ │ ├── IndependentOfOR.java │ │ └── TheAnimalProgrammingCompetitions.java │ └── wildcard │ │ ├── KnightOfIntegerland.java │ │ ├── StringEquations.java │ │ └── StringSequences.java │ ├── topcoder-open-2013 │ ├── round-1A │ │ ├── DirectionBoard.java │ │ ├── HouseBuilding.java │ │ └── TheFrog.java │ ├── round-1B │ │ ├── EllysFigurines.java │ │ ├── EllysPairs.java │ │ └── EllysReversals.java │ ├── round-1C │ │ ├── TheArray.java │ │ ├── TheKnights.java │ │ └── TheOlympiadInInformatics.java │ ├── round-2A │ │ ├── TheLargestString.cpp │ │ ├── TheMagicMatrix.cpp │ │ └── ThePowers.java │ ├── round-2B │ │ ├── FruitTrees.java │ │ ├── LitPanels.java │ │ └── ScotlandYard.java │ ├── round-2C │ │ ├── DancingFoxes.java │ │ ├── TheMountain.java │ │ └── WellTimedSearch.java │ └── round-3A │ │ ├── Block3Checkers.java │ │ ├── TrickyInequality.cpp │ │ └── YetAnotherANDProblem.java │ ├── topcoder-open-2014 │ ├── round-1A │ │ ├── EllysLamps.java │ │ ├── EllysScrabble.java │ │ └── EllysSortingTrimmer.java │ ├── round-1B │ │ ├── EagleInZoo.java │ │ ├── SpamChecker.java │ │ └── WolvesAndSheep.java │ ├── round-1C │ │ ├── FizzBuzzTurbo.java │ │ ├── RedPaint.java │ │ └── Unique.cpp │ ├── round-2A │ │ ├── NarrowPassage.java │ │ ├── SixteenBricks.java │ │ └── TreePuzzle.java │ ├── round-2B │ │ ├── AlwaysDefined.cpp │ │ ├── SumAndProductPuzzle.java │ │ └── SwitchingGame.java │ ├── round-2C │ │ ├── CliqueGraph.java │ │ ├── InverseRMQ.cpp │ │ └── SubstringReversal.java │ └── round-3A │ │ └── BrightLamps.java │ ├── topcoder-open-2016 │ ├── round-2A │ │ ├── CliqueCuts.cpp │ │ ├── LCMGCD.java │ │ └── VendingMachines.cpp │ ├── round-2B │ │ ├── FoxAndGemstone.java │ │ ├── ParenthesesTree.java │ │ └── TriangleTriples.java │ ├── round-2C │ │ ├── BearBall.cpp │ │ ├── BearCircleGame.cpp │ │ └── BearGridRect.cpp │ └── round-3A │ │ ├── FoxAndGo4.cpp │ │ ├── ParenthesesAndPermutation.cpp │ │ └── TopologicalOrdering.cpp │ └── topcoder-open-2017 │ ├── CoprimeMatrix.cpp │ └── HiddenRabbits.cpp ├── training ├── 2012-05-01-x-open-cup │ └── A │ │ └── Main.java ├── 2012-06-13-waterloo-local-contest │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── H.cpp │ ├── I.cpp │ └── J.cpp ├── 2012-06-18-mid-central-usa-2006-and-2007 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ ├── I.cpp │ ├── J.cpp │ ├── K.cpp │ └── L.cpp ├── 2012-06-19-arab-and-north-africa-2007 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ └── H.cpp ├── 2012-06-24-zoj-monthly-june-2012 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── H.cpp │ ├── J.cpp │ └── K.cpp ├── 2012-06-29-zoj-monthly-june-2009 │ ├── A.cpp │ ├── B.cpp │ ├── D.cpp │ ├── E.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ └── I.cpp ├── 2012-07-06-ural-su-and-orel-stu-contest-summer-2006 │ ├── A.cpp │ └── J.cpp └── 2012-07-09-usu-personal-contest-2007 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ ├── F.cpp │ ├── G.cpp │ ├── H.cpp │ └── I.cpp ├── uoj └── p192.cpp └── zoj ├── p2112.cpp ├── p2676.cpp ├── p3686.cpp ├── p3812.cpp └── p3940.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/.gitignore -------------------------------------------------------------------------------- /Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/Main.java -------------------------------------------------------------------------------- /bzoj/p1036.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/bzoj/p1036.cpp -------------------------------------------------------------------------------- /bzoj/p2757.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/bzoj/p2757.cpp -------------------------------------------------------------------------------- /bzoj/p3293.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/bzoj/p3293.cpp -------------------------------------------------------------------------------- /bzoj/p3294.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/bzoj/p3294.cpp -------------------------------------------------------------------------------- /codechef/APRIL12/DOUBLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/APRIL12/DOUBLE.cpp -------------------------------------------------------------------------------- /codechef/APRIL12/DUMPLING/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/APRIL12/DUMPLING/Main.java -------------------------------------------------------------------------------- /codechef/APRIL12/PANSTACK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/APRIL12/PANSTACK.cpp -------------------------------------------------------------------------------- /codechef/APRIL12/PARALLEL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/APRIL12/PARALLEL.cpp -------------------------------------------------------------------------------- /codechef/APRIL12/PLAYFIT/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/APRIL12/PLAYFIT/Main.java -------------------------------------------------------------------------------- /codechef/JULY12/CSUMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/JULY12/CSUMD.cpp -------------------------------------------------------------------------------- /codechef/JULY12/DREAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/JULY12/DREAM.cpp -------------------------------------------------------------------------------- /codechef/JULY12/GRAYSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/JULY12/GRAYSC.cpp -------------------------------------------------------------------------------- /codechef/JULY12/SAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/JULY12/SAD.cpp -------------------------------------------------------------------------------- /codechef/OCT12/DIAMOND/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codechef/OCT12/DIAMOND/Main.java -------------------------------------------------------------------------------- /codeforces/111-codeforces-round-85/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/111-codeforces-round-85/D.cpp -------------------------------------------------------------------------------- /codeforces/140-codeforces-round-100/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/140-codeforces-round-100/E.cpp -------------------------------------------------------------------------------- /codeforces/140-codeforces-round-100/F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/140-codeforces-round-100/F.cpp -------------------------------------------------------------------------------- /codeforces/141-codeforces-round-101/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/141-codeforces-round-101/D.cpp -------------------------------------------------------------------------------- /codeforces/144-codeforces-round-103/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/144-codeforces-round-103/A.py -------------------------------------------------------------------------------- /codeforces/146-codeforces-round-104/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/146-codeforces-round-104/A.py -------------------------------------------------------------------------------- /codeforces/149-codeforces-round-106/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/149-codeforces-round-106/A.py -------------------------------------------------------------------------------- /codeforces/151-codeforces-round-107/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/151-codeforces-round-107/A.py -------------------------------------------------------------------------------- /codeforces/152-codeforces-round-108/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/152-codeforces-round-108/A.cpp -------------------------------------------------------------------------------- /codeforces/152-codeforces-round-108/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/152-codeforces-round-108/C.hs -------------------------------------------------------------------------------- /codeforces/155-codeforces-round-109/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/155-codeforces-round-109/A.py -------------------------------------------------------------------------------- /codeforces/156-codeforces-round-110/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/156-codeforces-round-110/C.cpp -------------------------------------------------------------------------------- /codeforces/157-codeforces-round-110/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/157-codeforces-round-110/A.rb -------------------------------------------------------------------------------- /codeforces/157-codeforces-round-110/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/157-codeforces-round-110/D.cpp -------------------------------------------------------------------------------- /codeforces/16-codeforces-beta-round-16/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/16-codeforces-beta-round-16/A.hs -------------------------------------------------------------------------------- /codeforces/160-codeforces-round-111/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/160-codeforces-round-111/A.py -------------------------------------------------------------------------------- /codeforces/160-codeforces-round-111/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/160-codeforces-round-111/B.hs -------------------------------------------------------------------------------- /codeforces/160-codeforces-round-111/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/160-codeforces-round-111/D.cpp -------------------------------------------------------------------------------- /codeforces/161-vk-cup-2012-round-1/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/161-vk-cup-2012-round-1/C.cpp -------------------------------------------------------------------------------- /codeforces/161-vk-cup-2012-round-1/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/161-vk-cup-2012-round-1/D.cpp -------------------------------------------------------------------------------- /codeforces/163-vk-cup-2012-round-2/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/163-vk-cup-2012-round-2/A.cpp -------------------------------------------------------------------------------- /codeforces/163-vk-cup-2012-round-2/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/163-vk-cup-2012-round-2/E.cpp -------------------------------------------------------------------------------- /codeforces/165-codeforces-round-112/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/165-codeforces-round-112/A.py -------------------------------------------------------------------------------- /codeforces/168-codeforces-round-114/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/168-codeforces-round-114/A.rb -------------------------------------------------------------------------------- /codeforces/177-abbyy-cup-2-easy/E.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/177-abbyy-cup-2-easy/E.rb -------------------------------------------------------------------------------- /codeforces/178-abbyy-20-hard/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/178-abbyy-20-hard/A.cpp -------------------------------------------------------------------------------- /codeforces/178-abbyy-20-hard/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/178-abbyy-20-hard/B.cpp -------------------------------------------------------------------------------- /codeforces/180-codeforces-round-116/F.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/180-codeforces-round-116/F.rb -------------------------------------------------------------------------------- /codeforces/182-codeforces-round-117/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/182-codeforces-round-117/A.cpp -------------------------------------------------------------------------------- /codeforces/183-croc-champ-2012-final/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/183-croc-champ-2012-final/C.cpp -------------------------------------------------------------------------------- /codeforces/185-codeforces-round-118/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/185-codeforces-round-118/D.cpp -------------------------------------------------------------------------------- /codeforces/185-codeforces-round-118/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/185-codeforces-round-118/E.cpp -------------------------------------------------------------------------------- /codeforces/187-codeforces-round-119/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/187-codeforces-round-119/A.cpp -------------------------------------------------------------------------------- /codeforces/187-codeforces-round-119/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/187-codeforces-round-119/B.cpp -------------------------------------------------------------------------------- /codeforces/187-codeforces-round-119/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/187-codeforces-round-119/C.cpp -------------------------------------------------------------------------------- /codeforces/187-codeforces-round-119/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/187-codeforces-round-119/D.cpp -------------------------------------------------------------------------------- /codeforces/19-codeforces-beta-round-19/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/19-codeforces-beta-round-19/A.rb -------------------------------------------------------------------------------- /codeforces/190-codeforces-round-120/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/190-codeforces-round-120/D.cpp -------------------------------------------------------------------------------- /codeforces/190-codeforces-round-120/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/190-codeforces-round-120/E.cpp -------------------------------------------------------------------------------- /codeforces/191-codeforces-round-121/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/191-codeforces-round-121/A.cpp -------------------------------------------------------------------------------- /codeforces/191-codeforces-round-121/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/191-codeforces-round-121/B.cpp -------------------------------------------------------------------------------- /codeforces/191-codeforces-round-121/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/191-codeforces-round-121/C.cpp -------------------------------------------------------------------------------- /codeforces/191-codeforces-round-121/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/191-codeforces-round-121/E.cpp -------------------------------------------------------------------------------- /codeforces/193-codeforces-round-122/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/193-codeforces-round-122/C.cpp -------------------------------------------------------------------------------- /codeforces/196-codeforces-round-124/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/196-codeforces-round-124/C.cpp -------------------------------------------------------------------------------- /codeforces/197-codeforces-round-124/C.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/197-codeforces-round-124/C.rb -------------------------------------------------------------------------------- /codeforces/200-codeforces-round-126/B.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/200-codeforces-round-126/B.rb -------------------------------------------------------------------------------- /codeforces/204-codeforces-round-129/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/204-codeforces-round-129/E.cpp -------------------------------------------------------------------------------- /codeforces/208-codeforces-round-130/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/208-codeforces-round-130/A.py -------------------------------------------------------------------------------- /codeforces/208-codeforces-round-130/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/208-codeforces-round-130/E.cpp -------------------------------------------------------------------------------- /codeforces/213-codeforces-round-131/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/213-codeforces-round-131/E.cpp -------------------------------------------------------------------------------- /codeforces/214-codeforces-round-131/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/214-codeforces-round-131/A.hs -------------------------------------------------------------------------------- /codeforces/214-codeforces-round-131/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/214-codeforces-round-131/E.cpp -------------------------------------------------------------------------------- /codeforces/215-codeforces-round-132/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/215-codeforces-round-132/A.py -------------------------------------------------------------------------------- /codeforces/216-codeforces-round-133/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/216-codeforces-round-133/E.cpp -------------------------------------------------------------------------------- /codeforces/217-codeforces-round-134/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/217-codeforces-round-134/A.cpp -------------------------------------------------------------------------------- /codeforces/219-codeforces-round-135/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/219-codeforces-round-135/A.cpp -------------------------------------------------------------------------------- /codeforces/219-codeforces-round-135/B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/219-codeforces-round-135/B.py -------------------------------------------------------------------------------- /codeforces/219-codeforces-round-135/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/219-codeforces-round-135/C.cpp -------------------------------------------------------------------------------- /codeforces/219-codeforces-round-135/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/219-codeforces-round-135/D.cpp -------------------------------------------------------------------------------- /codeforces/219-codeforces-round-135/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/219-codeforces-round-135/E.cpp -------------------------------------------------------------------------------- /codeforces/220-codeforces-round-136/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/220-codeforces-round-136/A.cpp -------------------------------------------------------------------------------- /codeforces/220-codeforces-round-136/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/220-codeforces-round-136/B.cpp -------------------------------------------------------------------------------- /codeforces/220-codeforces-round-136/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/220-codeforces-round-136/C.cpp -------------------------------------------------------------------------------- /codeforces/220-codeforces-round-136/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/220-codeforces-round-136/D.cpp -------------------------------------------------------------------------------- /codeforces/220-codeforces-round-136/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/220-codeforces-round-136/E.cpp -------------------------------------------------------------------------------- /codeforces/221-codeforces-round-136/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/221-codeforces-round-136/A.py -------------------------------------------------------------------------------- /codeforces/221-codeforces-round-136/B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/221-codeforces-round-136/B.py -------------------------------------------------------------------------------- /codeforces/222-codeforces-round-137/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/222-codeforces-round-137/A.cpp -------------------------------------------------------------------------------- /codeforces/222-codeforces-round-137/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/222-codeforces-round-137/B.cpp -------------------------------------------------------------------------------- /codeforces/222-codeforces-round-137/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/222-codeforces-round-137/C.cpp -------------------------------------------------------------------------------- /codeforces/222-codeforces-round-137/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/222-codeforces-round-137/D.cpp -------------------------------------------------------------------------------- /codeforces/222-codeforces-round-137/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/222-codeforces-round-137/E.cpp -------------------------------------------------------------------------------- /codeforces/223-codeforces-round-138/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/223-codeforces-round-138/A.cpp -------------------------------------------------------------------------------- /codeforces/223-codeforces-round-138/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/223-codeforces-round-138/B.cpp -------------------------------------------------------------------------------- /codeforces/223-codeforces-round-138/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/223-codeforces-round-138/C.cpp -------------------------------------------------------------------------------- /codeforces/224-codeforces-round-138/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/224-codeforces-round-138/A.py -------------------------------------------------------------------------------- /codeforces/224-codeforces-round-138/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/224-codeforces-round-138/B.cpp -------------------------------------------------------------------------------- /codeforces/225-codeforces-round-139/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/225-codeforces-round-139/A.py -------------------------------------------------------------------------------- /codeforces/225-codeforces-round-139/B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/225-codeforces-round-139/B.py -------------------------------------------------------------------------------- /codeforces/225-codeforces-round-139/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/225-codeforces-round-139/C.cpp -------------------------------------------------------------------------------- /codeforces/225-codeforces-round-139/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/225-codeforces-round-139/D.cpp -------------------------------------------------------------------------------- /codeforces/225-codeforces-round-139/E.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/225-codeforces-round-139/E.py -------------------------------------------------------------------------------- /codeforces/226-codeforces-round-140/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/226-codeforces-round-140/A.py -------------------------------------------------------------------------------- /codeforces/226-codeforces-round-140/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/226-codeforces-round-140/B.cpp -------------------------------------------------------------------------------- /codeforces/226-codeforces-round-140/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/226-codeforces-round-140/C.cpp -------------------------------------------------------------------------------- /codeforces/226-codeforces-round-140/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/226-codeforces-round-140/D.cpp -------------------------------------------------------------------------------- /codeforces/226-codeforces-round-140/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/226-codeforces-round-140/E.cpp -------------------------------------------------------------------------------- /codeforces/227-codeforces-round-140/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/227-codeforces-round-140/A.py -------------------------------------------------------------------------------- /codeforces/227-codeforces-round-140/B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/227-codeforces-round-140/B.py -------------------------------------------------------------------------------- /codeforces/228-codeforces-round-141/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/228-codeforces-round-141/A.py -------------------------------------------------------------------------------- /codeforces/229-codeforces-round-142/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/229-codeforces-round-142/D.cpp -------------------------------------------------------------------------------- /codeforces/229-codeforces-round-142/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/229-codeforces-round-142/E.cpp -------------------------------------------------------------------------------- /codeforces/230-codeforces-round-142/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/230-codeforces-round-142/A.cpp -------------------------------------------------------------------------------- /codeforces/230-codeforces-round-142/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/230-codeforces-round-142/B.cpp -------------------------------------------------------------------------------- /codeforces/230-codeforces-round-142/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/230-codeforces-round-142/C.cpp -------------------------------------------------------------------------------- /codeforces/230-codeforces-round-142/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/230-codeforces-round-142/D.cpp -------------------------------------------------------------------------------- /codeforces/230-codeforces-round-142/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/230-codeforces-round-142/E.cpp -------------------------------------------------------------------------------- /codeforces/231-codeforces-round-143/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/231-codeforces-round-143/A.hs -------------------------------------------------------------------------------- /codeforces/231-codeforces-round-143/D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/231-codeforces-round-143/D.py -------------------------------------------------------------------------------- /codeforces/231-codeforces-round-143/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/231-codeforces-round-143/E.cpp -------------------------------------------------------------------------------- /codeforces/232-codeforces-round-144/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/232-codeforces-round-144/A.cpp -------------------------------------------------------------------------------- /codeforces/232-codeforces-round-144/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/232-codeforces-round-144/B.cpp -------------------------------------------------------------------------------- /codeforces/232-codeforces-round-144/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/232-codeforces-round-144/D.cpp -------------------------------------------------------------------------------- /codeforces/232-codeforces-round-144/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/232-codeforces-round-144/E.cpp -------------------------------------------------------------------------------- /codeforces/233-codeforces-round-144/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/233-codeforces-round-144/A.py -------------------------------------------------------------------------------- /codeforces/233-codeforces-round-144/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/233-codeforces-round-144/B.cpp -------------------------------------------------------------------------------- /codeforces/233-codeforces-round-144/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/233-codeforces-round-144/E.cpp -------------------------------------------------------------------------------- /codeforces/234-codeforces-round-145/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/234-codeforces-round-145/A.cpp -------------------------------------------------------------------------------- /codeforces/234-codeforces-round-145/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/234-codeforces-round-145/B.cpp -------------------------------------------------------------------------------- /codeforces/234-codeforces-round-145/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/234-codeforces-round-145/C.cpp -------------------------------------------------------------------------------- /codeforces/234-codeforces-round-145/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/234-codeforces-round-145/E.cpp -------------------------------------------------------------------------------- /codeforces/235-codeforces-round-146/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/235-codeforces-round-146/A.cpp -------------------------------------------------------------------------------- /codeforces/235-codeforces-round-146/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/235-codeforces-round-146/B.cpp -------------------------------------------------------------------------------- /codeforces/235-codeforces-round-146/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/235-codeforces-round-146/C.cpp -------------------------------------------------------------------------------- /codeforces/235-codeforces-round-146/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/235-codeforces-round-146/E.cpp -------------------------------------------------------------------------------- /codeforces/236-codeforces-round-146/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/236-codeforces-round-146/A.rb -------------------------------------------------------------------------------- /codeforces/236-codeforces-round-146/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/236-codeforces-round-146/B.cpp -------------------------------------------------------------------------------- /codeforces/237-codeforces-round-147/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/237-codeforces-round-147/A.cpp -------------------------------------------------------------------------------- /codeforces/237-codeforces-round-147/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/237-codeforces-round-147/B.cpp -------------------------------------------------------------------------------- /codeforces/237-codeforces-round-147/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/237-codeforces-round-147/C.cpp -------------------------------------------------------------------------------- /codeforces/237-codeforces-round-147/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/237-codeforces-round-147/D.cpp -------------------------------------------------------------------------------- /codeforces/237-codeforces-round-147/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/237-codeforces-round-147/E.cpp -------------------------------------------------------------------------------- /codeforces/238-codeforces-round-148/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/238-codeforces-round-148/A.cpp -------------------------------------------------------------------------------- /codeforces/240-codeforces-round-145/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/240-codeforces-round-145/A.cpp -------------------------------------------------------------------------------- /codeforces/240-codeforces-round-145/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/240-codeforces-round-145/B.cpp -------------------------------------------------------------------------------- /codeforces/240-codeforces-round-145/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/240-codeforces-round-145/C.cpp -------------------------------------------------------------------------------- /codeforces/240-codeforces-round-145/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/240-codeforces-round-145/D.cpp -------------------------------------------------------------------------------- /codeforces/240-codeforces-round-145/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/240-codeforces-round-145/E.cpp -------------------------------------------------------------------------------- /codeforces/240-codeforces-round-145/F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/240-codeforces-round-145/F.cpp -------------------------------------------------------------------------------- /codeforces/242-codeforces-round-149/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/242-codeforces-round-149/A.rb -------------------------------------------------------------------------------- /codeforces/242-codeforces-round-149/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/242-codeforces-round-149/B.cpp -------------------------------------------------------------------------------- /codeforces/242-codeforces-round-149/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/242-codeforces-round-149/C.cpp -------------------------------------------------------------------------------- /codeforces/242-codeforces-round-149/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/242-codeforces-round-149/D.cpp -------------------------------------------------------------------------------- /codeforces/242-codeforces-round-149/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/242-codeforces-round-149/E.cpp -------------------------------------------------------------------------------- /codeforces/243-codeforces-round-150/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/243-codeforces-round-150/A.cpp -------------------------------------------------------------------------------- /codeforces/243-codeforces-round-150/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/243-codeforces-round-150/B.cpp -------------------------------------------------------------------------------- /codeforces/243-codeforces-round-150/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/243-codeforces-round-150/C.cpp -------------------------------------------------------------------------------- /codeforces/243-codeforces-round-150/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/243-codeforces-round-150/D.cpp -------------------------------------------------------------------------------- /codeforces/246-codeforces-round-151/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/246-codeforces-round-151/A.hs -------------------------------------------------------------------------------- /codeforces/246-codeforces-round-151/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/246-codeforces-round-151/C.cpp -------------------------------------------------------------------------------- /codeforces/248-codeforces-round-152/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/248-codeforces-round-152/B.cpp -------------------------------------------------------------------------------- /codeforces/251-codeforces-round-153/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/251-codeforces-round-153/A.cpp -------------------------------------------------------------------------------- /codeforces/253-codeforces-round-154/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/253-codeforces-round-154/A.cpp -------------------------------------------------------------------------------- /codeforces/253-codeforces-round-154/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/253-codeforces-round-154/B.cpp -------------------------------------------------------------------------------- /codeforces/253-codeforces-round-154/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/253-codeforces-round-154/C.cpp -------------------------------------------------------------------------------- /codeforces/253-codeforces-round-154/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/253-codeforces-round-154/D.cpp -------------------------------------------------------------------------------- /codeforces/253-codeforces-round-154/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/253-codeforces-round-154/E.cpp -------------------------------------------------------------------------------- /codeforces/254-codeforces-round-155/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/254-codeforces-round-155/A.cpp -------------------------------------------------------------------------------- /codeforces/254-codeforces-round-155/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/254-codeforces-round-155/B.cpp -------------------------------------------------------------------------------- /codeforces/254-codeforces-round-155/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/254-codeforces-round-155/C.cpp -------------------------------------------------------------------------------- /codeforces/254-codeforces-round-155/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/254-codeforces-round-155/D.cpp -------------------------------------------------------------------------------- /codeforces/254-codeforces-round-155/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/254-codeforces-round-155/E.cpp -------------------------------------------------------------------------------- /codeforces/255-codeforces-round-156/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/255-codeforces-round-156/A.rb -------------------------------------------------------------------------------- /codeforces/255-codeforces-round-156/B.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/255-codeforces-round-156/B.rb -------------------------------------------------------------------------------- /codeforces/256-codeforces-round-156/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/256-codeforces-round-156/A.cpp -------------------------------------------------------------------------------- /codeforces/256-codeforces-round-156/B.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/256-codeforces-round-156/B.rb -------------------------------------------------------------------------------- /codeforces/256-codeforces-round-156/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/256-codeforces-round-156/D.cpp -------------------------------------------------------------------------------- /codeforces/256-codeforces-round-156/D.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/256-codeforces-round-156/D.rb -------------------------------------------------------------------------------- /codeforces/256-codeforces-round-156/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/256-codeforces-round-156/E.cpp -------------------------------------------------------------------------------- /codeforces/258-codeforces-round-157/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/258-codeforces-round-157/A.cpp -------------------------------------------------------------------------------- /codeforces/258-codeforces-round-157/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/258-codeforces-round-157/B.cpp -------------------------------------------------------------------------------- /codeforces/258-codeforces-round-157/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/258-codeforces-round-157/C.cpp -------------------------------------------------------------------------------- /codeforces/258-codeforces-round-157/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/258-codeforces-round-157/D.cpp -------------------------------------------------------------------------------- /codeforces/258-codeforces-round-157/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/258-codeforces-round-157/E.cpp -------------------------------------------------------------------------------- /codeforces/259-codeforces-round-157/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/259-codeforces-round-157/A.rb -------------------------------------------------------------------------------- /codeforces/259-codeforces-round-157/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/259-codeforces-round-157/B.cpp -------------------------------------------------------------------------------- /codeforces/26-codeforces-beta-round-26/D.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/26-codeforces-beta-round-26/D.hs -------------------------------------------------------------------------------- /codeforces/260-codeforces-round-158/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/260-codeforces-round-158/A.cpp -------------------------------------------------------------------------------- /codeforces/260-codeforces-round-158/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/260-codeforces-round-158/B.cpp -------------------------------------------------------------------------------- /codeforces/260-codeforces-round-158/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/260-codeforces-round-158/C.cpp -------------------------------------------------------------------------------- /codeforces/260-codeforces-round-158/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/260-codeforces-round-158/D.cpp -------------------------------------------------------------------------------- /codeforces/260-codeforces-round-158/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/260-codeforces-round-158/E.cpp -------------------------------------------------------------------------------- /codeforces/266-codeforces-round-163/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/266-codeforces-round-163/A.hs -------------------------------------------------------------------------------- /codeforces/269-codeforces-round-165/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/269-codeforces-round-165/C.cpp -------------------------------------------------------------------------------- /codeforces/271-codeforces-round-166/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/271-codeforces-round-166/A.rb -------------------------------------------------------------------------------- /codeforces/271-codeforces-round-166/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/271-codeforces-round-166/B.cpp -------------------------------------------------------------------------------- /codeforces/271-codeforces-round-166/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/271-codeforces-round-166/C.cpp -------------------------------------------------------------------------------- /codeforces/271-codeforces-round-166/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/271-codeforces-round-166/E.cpp -------------------------------------------------------------------------------- /codeforces/273-codeforces-round-167/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/273-codeforces-round-167/E.cpp -------------------------------------------------------------------------------- /codeforces/274-codeforces-round-168/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/274-codeforces-round-168/E.cpp -------------------------------------------------------------------------------- /codeforces/275-codeforces-round-168/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/275-codeforces-round-168/A.py -------------------------------------------------------------------------------- /codeforces/276-codeforces-round-169/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/276-codeforces-round-169/A.rb -------------------------------------------------------------------------------- /codeforces/276-codeforces-round-169/B.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/276-codeforces-round-169/B.rb -------------------------------------------------------------------------------- /codeforces/276-codeforces-round-169/D.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/276-codeforces-round-169/D.rb -------------------------------------------------------------------------------- /codeforces/282-codeforces-round-173/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/282-codeforces-round-173/A.rb -------------------------------------------------------------------------------- /codeforces/282-codeforces-round-173/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/282-codeforces-round-173/B.cpp -------------------------------------------------------------------------------- /codeforces/282-codeforces-round-173/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/282-codeforces-round-173/C.cpp -------------------------------------------------------------------------------- /codeforces/282-codeforces-round-173/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/282-codeforces-round-173/D.cpp -------------------------------------------------------------------------------- /codeforces/282-codeforces-round-173/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/282-codeforces-round-173/E.cpp -------------------------------------------------------------------------------- /codeforces/283-codeforces-round-174/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/283-codeforces-round-174/E.cpp -------------------------------------------------------------------------------- /codeforces/285-codeforces-round-175/D.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/285-codeforces-round-175/D.hs -------------------------------------------------------------------------------- /codeforces/286-codeforces-round-176/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/286-codeforces-round-176/D.cpp -------------------------------------------------------------------------------- /codeforces/286-codeforces-round-176/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/286-codeforces-round-176/E.cpp -------------------------------------------------------------------------------- /codeforces/288-codeforces-round-177/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/288-codeforces-round-177/C.cpp -------------------------------------------------------------------------------- /codeforces/29-codeforces-beta-round-29/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/29-codeforces-beta-round-29/B.hs -------------------------------------------------------------------------------- /codeforces/29-codeforces-beta-round-29/D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/29-codeforces-beta-round-29/D.py -------------------------------------------------------------------------------- /codeforces/294-codeforces-round-178/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/294-codeforces-round-178/D.cpp -------------------------------------------------------------------------------- /codeforces/294-codeforces-round-178/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/294-codeforces-round-178/E.cpp -------------------------------------------------------------------------------- /codeforces/297-codeforces-round-180/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/297-codeforces-round-180/D.cpp -------------------------------------------------------------------------------- /codeforces/299-croc-champ-2013-round-2/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/299-croc-champ-2013-round-2/A.rb -------------------------------------------------------------------------------- /codeforces/30-codeforces-beta-round-30/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/30-codeforces-beta-round-30/A.py -------------------------------------------------------------------------------- /codeforces/30-codeforces-beta-round-30/B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/30-codeforces-beta-round-30/B.py -------------------------------------------------------------------------------- /codeforces/300-codeforces-round-181/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/300-codeforces-round-181/A.hs -------------------------------------------------------------------------------- /codeforces/300-codeforces-round-181/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/300-codeforces-round-181/C.cpp -------------------------------------------------------------------------------- /codeforces/300-codeforces-round-181/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/300-codeforces-round-181/E.cpp -------------------------------------------------------------------------------- /codeforces/301-codeforces-round-182/C.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/301-codeforces-round-182/C.rb -------------------------------------------------------------------------------- /codeforces/304-codeforces-round-183/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/304-codeforces-round-183/C.hs -------------------------------------------------------------------------------- /codeforces/305-codeforces-round-184/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/305-codeforces-round-184/A.cpp -------------------------------------------------------------------------------- /codeforces/305-codeforces-round-184/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/305-codeforces-round-184/B.cpp -------------------------------------------------------------------------------- /codeforces/305-codeforces-round-184/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/305-codeforces-round-184/C.cpp -------------------------------------------------------------------------------- /codeforces/305-codeforces-round-184/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/305-codeforces-round-184/D.cpp -------------------------------------------------------------------------------- /codeforces/306-testing-round-6/A.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/306-testing-round-6/A.rb -------------------------------------------------------------------------------- /codeforces/306-testing-round-6/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/306-testing-round-6/B.cpp -------------------------------------------------------------------------------- /codeforces/306-testing-round-6/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/306-testing-round-6/D.cpp -------------------------------------------------------------------------------- /codeforces/31-codeforces-beta-round-31/B.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/31-codeforces-beta-round-31/B.py -------------------------------------------------------------------------------- /codeforces/314-codeforces-round-187/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/314-codeforces-round-187/A.cpp -------------------------------------------------------------------------------- /codeforces/314-codeforces-round-187/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/314-codeforces-round-187/B.cpp -------------------------------------------------------------------------------- /codeforces/314-codeforces-round-187/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/314-codeforces-round-187/C.cpp -------------------------------------------------------------------------------- /codeforces/314-codeforces-round-187/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/314-codeforces-round-187/D.cpp -------------------------------------------------------------------------------- /codeforces/317-codeforces-round-188/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/317-codeforces-round-188/A.hs -------------------------------------------------------------------------------- /codeforces/319-codeforces-round-189/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/319-codeforces-round-189/B.cpp -------------------------------------------------------------------------------- /codeforces/319-codeforces-round-189/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/319-codeforces-round-189/D.cpp -------------------------------------------------------------------------------- /codeforces/32-codeforces-beta-round-32/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/32-codeforces-beta-round-32/B.hs -------------------------------------------------------------------------------- /codeforces/32-codeforces-beta-round-32/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/32-codeforces-beta-round-32/C.hs -------------------------------------------------------------------------------- /codeforces/331-abbyy-cup-30-finals/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/331-abbyy-cup-30-finals/E.cpp -------------------------------------------------------------------------------- /codeforces/338-codeforces-round-196/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/338-codeforces-round-196/C.cpp -------------------------------------------------------------------------------- /codeforces/338-codeforces-round-196/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/338-codeforces-round-196/D.cpp -------------------------------------------------------------------------------- /codeforces/338-codeforces-round-196/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/338-codeforces-round-196/E.cpp -------------------------------------------------------------------------------- /codeforces/364-codeforces-round-213/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/364-codeforces-round-213/E.cpp -------------------------------------------------------------------------------- /codeforces/37-codeforces-beta-round-37/C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/37-codeforces-beta-round-37/C.py -------------------------------------------------------------------------------- /codeforces/375-codeforces-round-221/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/375-codeforces-round-221/E.cpp -------------------------------------------------------------------------------- /codeforces/377-codeforces-round-222/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/377-codeforces-round-222/C.cpp -------------------------------------------------------------------------------- /codeforces/39-school-team-contest-1/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/39-school-team-contest-1/A.cpp -------------------------------------------------------------------------------- /codeforces/39-school-team-contest-1/H.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/39-school-team-contest-1/H.hs -------------------------------------------------------------------------------- /codeforces/396-codeforces-round-232/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/396-codeforces-round-232/A.cpp -------------------------------------------------------------------------------- /codeforces/396-codeforces-round-232/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/396-codeforces-round-232/B.cpp -------------------------------------------------------------------------------- /codeforces/396-codeforces-round-232/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/396-codeforces-round-232/C.cpp -------------------------------------------------------------------------------- /codeforces/396-codeforces-round-232/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/396-codeforces-round-232/D.cpp -------------------------------------------------------------------------------- /codeforces/396-codeforces-round-232/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/396-codeforces-round-232/E.cpp -------------------------------------------------------------------------------- /codeforces/416-codeforces-round-241/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/416-codeforces-round-241/A.java -------------------------------------------------------------------------------- /codeforces/416-codeforces-round-241/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/416-codeforces-round-241/B.java -------------------------------------------------------------------------------- /codeforces/416-codeforces-round-241/C.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/416-codeforces-round-241/C.java -------------------------------------------------------------------------------- /codeforces/416-codeforces-round-241/E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/416-codeforces-round-241/E.java -------------------------------------------------------------------------------- /codeforces/418-rcc-2014-warmup/A/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/418-rcc-2014-warmup/A/Main.java -------------------------------------------------------------------------------- /codeforces/418-rcc-2014-warmup/B/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/418-rcc-2014-warmup/B/Main.java -------------------------------------------------------------------------------- /codeforces/418-rcc-2014-warmup/C/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/418-rcc-2014-warmup/C/Main.java -------------------------------------------------------------------------------- /codeforces/418-rcc-2014-warmup/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/418-rcc-2014-warmup/D.cpp -------------------------------------------------------------------------------- /codeforces/418-rcc-2014-warmup/E/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/418-rcc-2014-warmup/E/Main.java -------------------------------------------------------------------------------- /codeforces/429-codeforces-round-245/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/429-codeforces-round-245/A.cpp -------------------------------------------------------------------------------- /codeforces/429-codeforces-round-245/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/429-codeforces-round-245/B.cpp -------------------------------------------------------------------------------- /codeforces/429-codeforces-round-245/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/429-codeforces-round-245/C.cpp -------------------------------------------------------------------------------- /codeforces/429-codeforces-round-245/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/429-codeforces-round-245/D.cpp -------------------------------------------------------------------------------- /codeforces/429-codeforces-round-245/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/429-codeforces-round-245/E.cpp -------------------------------------------------------------------------------- /codeforces/434-codeforces-round-248/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/434-codeforces-round-248/B.cpp -------------------------------------------------------------------------------- /codeforces/434-codeforces-round-248/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/434-codeforces-round-248/E.cpp -------------------------------------------------------------------------------- /codeforces/436-zepto-code-rush-2014/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/436-zepto-code-rush-2014/E.cpp -------------------------------------------------------------------------------- /codeforces/44-school-team-contest-2/F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/44-school-team-contest-2/F.cpp -------------------------------------------------------------------------------- /codeforces/45-school-team-contest-3/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/45-school-team-contest-3/B.cpp -------------------------------------------------------------------------------- /codeforces/45-school-team-contest-3/G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/45-school-team-contest-3/G.cpp -------------------------------------------------------------------------------- /codeforces/461-codeforces-round-263/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/461-codeforces-round-263/C.cpp -------------------------------------------------------------------------------- /codeforces/461-codeforces-round-263/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/461-codeforces-round-263/D.cpp -------------------------------------------------------------------------------- /codeforces/464-codeforces-round-265/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/464-codeforces-round-265/E.cpp -------------------------------------------------------------------------------- /codeforces/478-codeforces-round-273/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/478-codeforces-round-273/E.cpp -------------------------------------------------------------------------------- /codeforces/542-vk-cup-2015-round-3/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/542-vk-cup-2015-round-3/A.cpp -------------------------------------------------------------------------------- /codeforces/542-vk-cup-2015-round-3/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/542-vk-cup-2015-round-3/B.cpp -------------------------------------------------------------------------------- /codeforces/542-vk-cup-2015-round-3/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/542-vk-cup-2015-round-3/D.cpp -------------------------------------------------------------------------------- /codeforces/542-vk-cup-2015-round-3/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/542-vk-cup-2015-round-3/E.cpp -------------------------------------------------------------------------------- /codeforces/546-codeforces-round-304/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/546-codeforces-round-304/C.hs -------------------------------------------------------------------------------- /codeforces/547-codeforces-round-305/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/547-codeforces-round-305/A.cpp -------------------------------------------------------------------------------- /codeforces/547-codeforces-round-305/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/547-codeforces-round-305/B.cpp -------------------------------------------------------------------------------- /codeforces/547-codeforces-round-305/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/547-codeforces-round-305/C.cpp -------------------------------------------------------------------------------- /codeforces/549-looksery-cup-2015/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/549-looksery-cup-2015/A.hs -------------------------------------------------------------------------------- /codeforces/549-looksery-cup-2015/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/549-looksery-cup-2015/B.hs -------------------------------------------------------------------------------- /codeforces/549-looksery-cup-2015/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/549-looksery-cup-2015/C.hs -------------------------------------------------------------------------------- /codeforces/549-looksery-cup-2015/D.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/549-looksery-cup-2015/D.hs -------------------------------------------------------------------------------- /codeforces/549-looksery-cup-2015/F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/549-looksery-cup-2015/F.cpp -------------------------------------------------------------------------------- /codeforces/549-looksery-cup-2015/G.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/549-looksery-cup-2015/G.hs -------------------------------------------------------------------------------- /codeforces/549-looksery-cup-2015/H.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/549-looksery-cup-2015/H.hs -------------------------------------------------------------------------------- /codeforces/550-codeforces-round-306/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/550-codeforces-round-306/A.hs -------------------------------------------------------------------------------- /codeforces/550-codeforces-round-306/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/550-codeforces-round-306/B.hs -------------------------------------------------------------------------------- /codeforces/550-codeforces-round-306/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/550-codeforces-round-306/C.hs -------------------------------------------------------------------------------- /codeforces/550-codeforces-round-306/D.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/550-codeforces-round-306/D.hs -------------------------------------------------------------------------------- /codeforces/551-codeforces-round-307/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/551-codeforces-round-307/B.hs -------------------------------------------------------------------------------- /codeforces/551-codeforces-round-307/C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/551-codeforces-round-307/C.cs -------------------------------------------------------------------------------- /codeforces/552-codeforces-round-308/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/552-codeforces-round-308/A.hs -------------------------------------------------------------------------------- /codeforces/552-codeforces-round-308/B.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/552-codeforces-round-308/B.hs -------------------------------------------------------------------------------- /codeforces/552-codeforces-round-308/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/552-codeforces-round-308/C.hs -------------------------------------------------------------------------------- /codeforces/552-codeforces-round-308/D.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/552-codeforces-round-308/D.hs -------------------------------------------------------------------------------- /codeforces/552-codeforces-round-308/E.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/552-codeforces-round-308/E.py -------------------------------------------------------------------------------- /codeforces/603-codeforces-round-334/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/603-codeforces-round-334/A.hs -------------------------------------------------------------------------------- /codeforces/603-codeforces-round-334/C.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/603-codeforces-round-334/C.hs -------------------------------------------------------------------------------- /codeforces/623-aim-tech-round/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/623-aim-tech-round/A.cpp -------------------------------------------------------------------------------- /codeforces/623-aim-tech-round/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/623-aim-tech-round/B.cpp -------------------------------------------------------------------------------- /codeforces/623-aim-tech-round/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/623-aim-tech-round/C.cpp -------------------------------------------------------------------------------- /codeforces/623-aim-tech-round/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/623-aim-tech-round/D.cpp -------------------------------------------------------------------------------- /codeforces/623-aim-tech-round/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/623-aim-tech-round/E.cpp -------------------------------------------------------------------------------- /codeforces/708-aim-tech-round-3/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/708-aim-tech-round-3/A.cpp -------------------------------------------------------------------------------- /codeforces/708-aim-tech-round-3/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/708-aim-tech-round-3/B.cpp -------------------------------------------------------------------------------- /codeforces/708-aim-tech-round-3/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/708-aim-tech-round-3/C.cpp -------------------------------------------------------------------------------- /codeforces/708-aim-tech-round-3/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/708-aim-tech-round-3/D.cpp -------------------------------------------------------------------------------- /codeforces/708-aim-tech-round-3/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/708-aim-tech-round-3/E.cpp -------------------------------------------------------------------------------- /codeforces/715-codeforces-round-372/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/715-codeforces-round-372/A.py -------------------------------------------------------------------------------- /codeforces/715-codeforces-round-372/D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/715-codeforces-round-372/D.py -------------------------------------------------------------------------------- /codeforces/908-good-bye-2017/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/908-good-bye-2017/A.py -------------------------------------------------------------------------------- /codeforces/908-good-bye-2017/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/908-good-bye-2017/B.cpp -------------------------------------------------------------------------------- /codeforces/908-good-bye-2017/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/908-good-bye-2017/C.cpp -------------------------------------------------------------------------------- /codeforces/908-good-bye-2017/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/908-good-bye-2017/D.cpp -------------------------------------------------------------------------------- /codeforces/908-good-bye-2017/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/908-good-bye-2017/E.cpp -------------------------------------------------------------------------------- /codeforces/908-good-bye-2017/G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/codeforces/908-good-bye-2017/G.cpp -------------------------------------------------------------------------------- /google-code-jam/round-1a-2012/A/A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/google-code-jam/round-1a-2012/A/A.py -------------------------------------------------------------------------------- /google-code-jam/round-1a-2012/B/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/google-code-jam/round-1a-2012/B/B.cpp -------------------------------------------------------------------------------- /hdoj/p1695.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p1695.cpp -------------------------------------------------------------------------------- /hdoj/p3530.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p3530.cpp -------------------------------------------------------------------------------- /hdoj/p3948.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p3948.cpp -------------------------------------------------------------------------------- /hdoj/p4389.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p4389.cpp -------------------------------------------------------------------------------- /hdoj/p4436.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p4436.cpp -------------------------------------------------------------------------------- /hdoj/p4524/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p4524/Main.java -------------------------------------------------------------------------------- /hdoj/p4625.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p4625.cpp -------------------------------------------------------------------------------- /hdoj/p4626.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p4626.cpp -------------------------------------------------------------------------------- /hdoj/p4668.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p4668.cpp -------------------------------------------------------------------------------- /hdoj/p4680.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p4680.cpp -------------------------------------------------------------------------------- /hdoj/p5470.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p5470.cpp -------------------------------------------------------------------------------- /hdoj/p5489.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p5489.cpp -------------------------------------------------------------------------------- /hdoj/p5756.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p5756.cpp -------------------------------------------------------------------------------- /hdoj/p5759.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/hdoj/p5759.cpp -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/carry/src/001.hand: -------------------------------------------------------------------------------- 1 | 2 2 | 5 5 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/carry/src/002.hand: -------------------------------------------------------------------------------- 1 | 10 2 | 0 1 2 3 4 5 6 7 8 9 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/carry/src/003.hand: -------------------------------------------------------------------------------- 1 | 2 2 | 0 0 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/censor/src/001.hand: -------------------------------------------------------------------------------- 1 | abc 2 | aaabcbc 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/censor/src/002.hand: -------------------------------------------------------------------------------- 1 | b 2 | bbb 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/censor/src/003.hand: -------------------------------------------------------------------------------- 1 | abc 2 | ab 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/censor/src/004.hand: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/cover/src/003.hand: -------------------------------------------------------------------------------- 1 | 2 1 2 | 1 2 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/easy/src/001.hand: -------------------------------------------------------------------------------- 1 | 2 2 | 1 4 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/easy/src/002.hand: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/easy/src/003.hand: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/necklace/src/003.hand: -------------------------------------------------------------------------------- 1 | 1 2 | 10000 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/party/src/004.hand: -------------------------------------------------------------------------------- 1 | 1 0 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/rectangle/src/001.hand: -------------------------------------------------------------------------------- 1 | 2 2 6 2 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/rectangle/src/002.hand: -------------------------------------------------------------------------------- 1 | 1 1 0 2 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/rectangle/src/003.hand: -------------------------------------------------------------------------------- 1 | 35S0ih\ -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/rmq/src/003.hand: -------------------------------------------------------------------------------- 1 | 1 0 0 2 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/travel/src/001.hand: -------------------------------------------------------------------------------- 1 | 3 2 1 3 2 | 1 2 3 | 2 3 4 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/travel/src/002.hand: -------------------------------------------------------------------------------- 1 | 3V0Bc.C#. -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/travel/src/003.hand: -------------------------------------------------------------------------------- 1 | 2 0 1 1 2 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/turn/src/001.hand: -------------------------------------------------------------------------------- 1 | 2 2 | 1 0 3 | 0 -1 4 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/turn/src/002.hand: -------------------------------------------------------------------------------- 1 | 1 2 | 0 1 3 | -------------------------------------------------------------------------------- /my-contests/2015-06-14-sichuan-province-contest/problems/turn/src/006.hand: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /ontak/ontak-2010/kla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/ontak/ontak-2010/kla.cpp -------------------------------------------------------------------------------- /ontak/ontak-2010/pod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/ontak/ontak-2010/pod.cpp -------------------------------------------------------------------------------- /ontak/ontak-2010/szc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/ontak/ontak-2010/szc.cpp -------------------------------------------------------------------------------- /ontak/ontak-2010/wie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/ontak/ontak-2010/wie.cpp -------------------------------------------------------------------------------- /ontak/ontak-2010/wyd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/ontak/ontak-2010/wyd.cpp -------------------------------------------------------------------------------- /pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/pe.h -------------------------------------------------------------------------------- /poi/poi-x/aut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/aut.cpp -------------------------------------------------------------------------------- /poi/poi-x/cia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/cia.cpp -------------------------------------------------------------------------------- /poi/poi-x/cze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/cze.cpp -------------------------------------------------------------------------------- /poi/poi-x/lic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/lic.cpp -------------------------------------------------------------------------------- /poi/poi-x/mal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/mal.cpp -------------------------------------------------------------------------------- /poi/poi-x/mas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/mas.cpp -------------------------------------------------------------------------------- /poi/poi-x/ply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/ply.cpp -------------------------------------------------------------------------------- /poi/poi-x/pol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/pol.cpp -------------------------------------------------------------------------------- /poi/poi-x/prz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/prz.cpp -------------------------------------------------------------------------------- /poi/poi-x/ska.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/ska.cpp -------------------------------------------------------------------------------- /poi/poi-x/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/sum.cpp -------------------------------------------------------------------------------- /poi/poi-x/tas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/tas.cpp -------------------------------------------------------------------------------- /poi/poi-x/tro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-x/tro.cpp -------------------------------------------------------------------------------- /poi/poi-xi/szn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-xi/szn.cpp -------------------------------------------------------------------------------- /poi/poi-xi/tur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poi/poi-xi/tur.cpp -------------------------------------------------------------------------------- /poj/p1753.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p1753.cpp -------------------------------------------------------------------------------- /poj/p2186.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p2186.cpp -------------------------------------------------------------------------------- /poj/p2378.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p2378.cpp -------------------------------------------------------------------------------- /poj/p2761.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p2761.cpp -------------------------------------------------------------------------------- /poj/p2923.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p2923.cpp -------------------------------------------------------------------------------- /poj/p2942.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p2942.cpp -------------------------------------------------------------------------------- /poj/p3155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p3155.cpp -------------------------------------------------------------------------------- /poj/p3468.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/poj/p3468.cpp -------------------------------------------------------------------------------- /project-euler/p103.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p103.cpp -------------------------------------------------------------------------------- /project-euler/p104.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p104.py -------------------------------------------------------------------------------- /project-euler/p105.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p105.py -------------------------------------------------------------------------------- /project-euler/p106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p106.cpp -------------------------------------------------------------------------------- /project-euler/p107.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p107.py -------------------------------------------------------------------------------- /project-euler/p108.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p108.py -------------------------------------------------------------------------------- /project-euler/p109.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p109.py -------------------------------------------------------------------------------- /project-euler/p110.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p110.py -------------------------------------------------------------------------------- /project-euler/p111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p111.cpp -------------------------------------------------------------------------------- /project-euler/p112.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p112.py -------------------------------------------------------------------------------- /project-euler/p113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p113.py -------------------------------------------------------------------------------- /project-euler/p114.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p114.py -------------------------------------------------------------------------------- /project-euler/p116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p116.py -------------------------------------------------------------------------------- /project-euler/p117.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p117.py -------------------------------------------------------------------------------- /project-euler/p118.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p118.cpp -------------------------------------------------------------------------------- /project-euler/p119.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p119.py -------------------------------------------------------------------------------- /project-euler/p120.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p120.py -------------------------------------------------------------------------------- /project-euler/p121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p121.py -------------------------------------------------------------------------------- /project-euler/p122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p122.cpp -------------------------------------------------------------------------------- /project-euler/p123.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p123.cpp -------------------------------------------------------------------------------- /project-euler/p124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p124.cpp -------------------------------------------------------------------------------- /project-euler/p125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p125.cpp -------------------------------------------------------------------------------- /project-euler/p126.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p126.cpp -------------------------------------------------------------------------------- /project-euler/p127.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p127.cpp -------------------------------------------------------------------------------- /project-euler/p128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p128.cpp -------------------------------------------------------------------------------- /project-euler/p131.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p131.cpp -------------------------------------------------------------------------------- /project-euler/p132.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p132.py -------------------------------------------------------------------------------- /project-euler/p133.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p133.cpp -------------------------------------------------------------------------------- /project-euler/p134.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p134.cpp -------------------------------------------------------------------------------- /project-euler/p135.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p135.cpp -------------------------------------------------------------------------------- /project-euler/p136.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p136.cpp -------------------------------------------------------------------------------- /project-euler/p137.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p137.py -------------------------------------------------------------------------------- /project-euler/p138.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p138.py -------------------------------------------------------------------------------- /project-euler/p139.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p139.cpp -------------------------------------------------------------------------------- /project-euler/p140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p140.py -------------------------------------------------------------------------------- /project-euler/p141.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p141.cpp -------------------------------------------------------------------------------- /project-euler/p142.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p142.cpp -------------------------------------------------------------------------------- /project-euler/p143.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p143.cpp -------------------------------------------------------------------------------- /project-euler/p144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p144.cpp -------------------------------------------------------------------------------- /project-euler/p145.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p145.cpp -------------------------------------------------------------------------------- /project-euler/p146.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p146.cpp -------------------------------------------------------------------------------- /project-euler/p147.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p147.py -------------------------------------------------------------------------------- /project-euler/p148.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p148.py -------------------------------------------------------------------------------- /project-euler/p149.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p149.py -------------------------------------------------------------------------------- /project-euler/p150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p150.cpp -------------------------------------------------------------------------------- /project-euler/p151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p151.py -------------------------------------------------------------------------------- /project-euler/p152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p152.py -------------------------------------------------------------------------------- /project-euler/p153.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p153.cpp -------------------------------------------------------------------------------- /project-euler/p154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p154.cpp -------------------------------------------------------------------------------- /project-euler/p154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p154.py -------------------------------------------------------------------------------- /project-euler/p155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p155.cpp -------------------------------------------------------------------------------- /project-euler/p156.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p156.cpp -------------------------------------------------------------------------------- /project-euler/p157.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p157.py -------------------------------------------------------------------------------- /project-euler/p158.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p158.py -------------------------------------------------------------------------------- /project-euler/p159.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p159.cpp -------------------------------------------------------------------------------- /project-euler/p160.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p160.py -------------------------------------------------------------------------------- /project-euler/p161.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p161.cpp -------------------------------------------------------------------------------- /project-euler/p162.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p162.py -------------------------------------------------------------------------------- /project-euler/p163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p163.cpp -------------------------------------------------------------------------------- /project-euler/p164.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p164.py -------------------------------------------------------------------------------- /project-euler/p166.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p166.cpp -------------------------------------------------------------------------------- /project-euler/p167.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p167.cpp -------------------------------------------------------------------------------- /project-euler/p168.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p168.py -------------------------------------------------------------------------------- /project-euler/p169.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p169.py -------------------------------------------------------------------------------- /project-euler/p170.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p170.cpp -------------------------------------------------------------------------------- /project-euler/p171.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p171.py -------------------------------------------------------------------------------- /project-euler/p173.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p173.py -------------------------------------------------------------------------------- /project-euler/p174.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p174.cpp -------------------------------------------------------------------------------- /project-euler/p175.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p175.py -------------------------------------------------------------------------------- /project-euler/p176.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p176.py -------------------------------------------------------------------------------- /project-euler/p177.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p177.cpp -------------------------------------------------------------------------------- /project-euler/p178.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p178.cpp -------------------------------------------------------------------------------- /project-euler/p179.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p179.cpp -------------------------------------------------------------------------------- /project-euler/p180.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p180.py -------------------------------------------------------------------------------- /project-euler/p181/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p181/Main.java -------------------------------------------------------------------------------- /project-euler/p182.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p182.py -------------------------------------------------------------------------------- /project-euler/p183.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p183.py -------------------------------------------------------------------------------- /project-euler/p184.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p184.cpp -------------------------------------------------------------------------------- /project-euler/p185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p185.cpp -------------------------------------------------------------------------------- /project-euler/p186.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p186.py -------------------------------------------------------------------------------- /project-euler/p187.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p187.cpp -------------------------------------------------------------------------------- /project-euler/p188.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p188.py -------------------------------------------------------------------------------- /project-euler/p189.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p189.cpp -------------------------------------------------------------------------------- /project-euler/p190.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p190.py -------------------------------------------------------------------------------- /project-euler/p191.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p191.py -------------------------------------------------------------------------------- /project-euler/p192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p192.py -------------------------------------------------------------------------------- /project-euler/p193.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p193.cpp -------------------------------------------------------------------------------- /project-euler/p194.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p194.cpp -------------------------------------------------------------------------------- /project-euler/p195.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p195.py -------------------------------------------------------------------------------- /project-euler/p196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p196.cpp -------------------------------------------------------------------------------- /project-euler/p197.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p197.py -------------------------------------------------------------------------------- /project-euler/p198.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p198.cpp -------------------------------------------------------------------------------- /project-euler/p199.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p199.py -------------------------------------------------------------------------------- /project-euler/p200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p200.cpp -------------------------------------------------------------------------------- /project-euler/p201.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p201.cpp -------------------------------------------------------------------------------- /project-euler/p202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p202.py -------------------------------------------------------------------------------- /project-euler/p203.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p203.py -------------------------------------------------------------------------------- /project-euler/p204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p204.py -------------------------------------------------------------------------------- /project-euler/p205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p205.py -------------------------------------------------------------------------------- /project-euler/p206.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p206.py -------------------------------------------------------------------------------- /project-euler/p207.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p207.py -------------------------------------------------------------------------------- /project-euler/p208.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p208.py -------------------------------------------------------------------------------- /project-euler/p209.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p209.py -------------------------------------------------------------------------------- /project-euler/p210.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p210.cpp -------------------------------------------------------------------------------- /project-euler/p211.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p211.cpp -------------------------------------------------------------------------------- /project-euler/p212.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p212.cpp -------------------------------------------------------------------------------- /project-euler/p213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p213.cpp -------------------------------------------------------------------------------- /project-euler/p214.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p214.cpp -------------------------------------------------------------------------------- /project-euler/p215.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p215.cpp -------------------------------------------------------------------------------- /project-euler/p216.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p216.cpp -------------------------------------------------------------------------------- /project-euler/p217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p217.py -------------------------------------------------------------------------------- /project-euler/p219.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p219.py -------------------------------------------------------------------------------- /project-euler/p220.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p220.py -------------------------------------------------------------------------------- /project-euler/p225.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p225.cpp -------------------------------------------------------------------------------- /project-euler/p227.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p227.sage -------------------------------------------------------------------------------- /project-euler/p228.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p228.py -------------------------------------------------------------------------------- /project-euler/p229.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p229.cpp -------------------------------------------------------------------------------- /project-euler/p230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p230.py -------------------------------------------------------------------------------- /project-euler/p231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p231.cpp -------------------------------------------------------------------------------- /project-euler/p232.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p232.cpp -------------------------------------------------------------------------------- /project-euler/p234.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p234.cpp -------------------------------------------------------------------------------- /project-euler/p235.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p235.py -------------------------------------------------------------------------------- /project-euler/p237.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p237.cpp -------------------------------------------------------------------------------- /project-euler/p238.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p238.cpp -------------------------------------------------------------------------------- /project-euler/p239.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p239.py -------------------------------------------------------------------------------- /project-euler/p240.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p240.py -------------------------------------------------------------------------------- /project-euler/p242.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p242.py -------------------------------------------------------------------------------- /project-euler/p250.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p250.cpp -------------------------------------------------------------------------------- /project-euler/p258.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p258.cpp -------------------------------------------------------------------------------- /project-euler/p269/p269.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p269/p269.cpp -------------------------------------------------------------------------------- /project-euler/p282.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p282.cpp -------------------------------------------------------------------------------- /project-euler/p296.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p296.cpp -------------------------------------------------------------------------------- /project-euler/p300/p300.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p300/p300.cpp -------------------------------------------------------------------------------- /project-euler/p301/p301.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p301/p301.hs -------------------------------------------------------------------------------- /project-euler/p303/p303.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p303/p303.py -------------------------------------------------------------------------------- /project-euler/p306/p306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p306/p306.cpp -------------------------------------------------------------------------------- /project-euler/p309.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p309.cpp -------------------------------------------------------------------------------- /project-euler/p310/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p310/Main.java -------------------------------------------------------------------------------- /project-euler/p318/p318.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p318/p318.py -------------------------------------------------------------------------------- /project-euler/p320/p320.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p320/p320.cpp -------------------------------------------------------------------------------- /project-euler/p326/p326.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p326/p326.py -------------------------------------------------------------------------------- /project-euler/p337/p337.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p337/p337.cpp -------------------------------------------------------------------------------- /project-euler/p340/p340.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p340/p340.hs -------------------------------------------------------------------------------- /project-euler/p342/p342.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p342/p342.cpp -------------------------------------------------------------------------------- /project-euler/p345/p345.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p345/p345.py -------------------------------------------------------------------------------- /project-euler/p346.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p346.py -------------------------------------------------------------------------------- /project-euler/p347/p347.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p347/p347.cpp -------------------------------------------------------------------------------- /project-euler/p348.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p348.cpp -------------------------------------------------------------------------------- /project-euler/p349.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p349.py -------------------------------------------------------------------------------- /project-euler/p350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p350.cpp -------------------------------------------------------------------------------- /project-euler/p351/p351.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p351/p351.py -------------------------------------------------------------------------------- /project-euler/p357/p357.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p357/p357.cpp -------------------------------------------------------------------------------- /project-euler/p360/p360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p360/p360.cpp -------------------------------------------------------------------------------- /project-euler/p364/p364.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p364/p364.cpp -------------------------------------------------------------------------------- /project-euler/p365/p365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p365/p365.py -------------------------------------------------------------------------------- /project-euler/p375.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p375.cpp -------------------------------------------------------------------------------- /project-euler/p377/p377.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p377/p377.rb -------------------------------------------------------------------------------- /project-euler/p379/p379.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p379/p379.cpp -------------------------------------------------------------------------------- /project-euler/p383/p383.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p383/p383.cpp -------------------------------------------------------------------------------- /project-euler/p388/p388.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p388/p388.py -------------------------------------------------------------------------------- /project-euler/p400/p400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p400/p400.py -------------------------------------------------------------------------------- /project-euler/p402/p402.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p402/p402.py -------------------------------------------------------------------------------- /project-euler/p407/p407.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p407/p407.cpp -------------------------------------------------------------------------------- /project-euler/p409/p409.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p409/p409.cpp -------------------------------------------------------------------------------- /project-euler/p411/p411.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p411/p411.cpp -------------------------------------------------------------------------------- /project-euler/p412/p412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p412/p412.py -------------------------------------------------------------------------------- /project-euler/p413/p413.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p413/p413.py -------------------------------------------------------------------------------- /project-euler/p416/p416.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p416/p416.cpp -------------------------------------------------------------------------------- /project-euler/p416/p416.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p416/p416.hs -------------------------------------------------------------------------------- /project-euler/p435/p435.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p435/p435.hs -------------------------------------------------------------------------------- /project-euler/p439/p439-backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p439/p439-backup.py -------------------------------------------------------------------------------- /project-euler/p452/p452.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p452/p452.cpp -------------------------------------------------------------------------------- /project-euler/p453/p453.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p453/p453.cpp -------------------------------------------------------------------------------- /project-euler/p457.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p457.cpp -------------------------------------------------------------------------------- /project-euler/p458.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p458.sage -------------------------------------------------------------------------------- /project-euler/p468.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p468.cpp -------------------------------------------------------------------------------- /project-euler/p486/step1.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p486/step1.sage -------------------------------------------------------------------------------- /project-euler/p486/step2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p486/step2.cpp -------------------------------------------------------------------------------- /project-euler/p486/step3.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p486/step3.sage -------------------------------------------------------------------------------- /project-euler/p487.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p487.cpp -------------------------------------------------------------------------------- /project-euler/p488/p488.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p488/p488.py -------------------------------------------------------------------------------- /project-euler/p490.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p490.sage -------------------------------------------------------------------------------- /project-euler/p491/p491.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p491/p491.cpp -------------------------------------------------------------------------------- /project-euler/p495.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p495.cpp -------------------------------------------------------------------------------- /project-euler/p499.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p499.cpp -------------------------------------------------------------------------------- /project-euler/p500/p500.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p500/p500.cpp -------------------------------------------------------------------------------- /project-euler/p502/p502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p502/p502.cpp -------------------------------------------------------------------------------- /project-euler/p503/p503.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p503/p503.py -------------------------------------------------------------------------------- /project-euler/p509/p509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p509/p509.py -------------------------------------------------------------------------------- /project-euler/p511/p511.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p511/p511.cpp -------------------------------------------------------------------------------- /project-euler/p515/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p515/Main.hs -------------------------------------------------------------------------------- /project-euler/p516/p516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p516/p516.cpp -------------------------------------------------------------------------------- /project-euler/p518/p518.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p518/p518.cpp -------------------------------------------------------------------------------- /project-euler/p523/p523.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p523/p523.py -------------------------------------------------------------------------------- /project-euler/p528.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p528.py -------------------------------------------------------------------------------- /project-euler/p529/p529.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p529/p529.cpp -------------------------------------------------------------------------------- /project-euler/p544/p544.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p544/p544.cpp -------------------------------------------------------------------------------- /project-euler/p545.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p545.cpp -------------------------------------------------------------------------------- /project-euler/p546/p546.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p546/p546.py -------------------------------------------------------------------------------- /project-euler/p548/p548.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p548/p548.cpp -------------------------------------------------------------------------------- /project-euler/p550/p550.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p550/p550.cpp -------------------------------------------------------------------------------- /project-euler/p551/p551.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p551/p551.py -------------------------------------------------------------------------------- /project-euler/p552.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p552.cpp -------------------------------------------------------------------------------- /project-euler/p553/p553.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p553/p553.cpp -------------------------------------------------------------------------------- /project-euler/p554/p554.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p554/p554.py -------------------------------------------------------------------------------- /project-euler/p555.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p555.py -------------------------------------------------------------------------------- /project-euler/p559/p559.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p559/p559.cpp -------------------------------------------------------------------------------- /project-euler/p569.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p569.cpp -------------------------------------------------------------------------------- /project-euler/p571.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p571.cpp -------------------------------------------------------------------------------- /project-euler/p588.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p588.py -------------------------------------------------------------------------------- /project-euler/p590.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p590.cpp -------------------------------------------------------------------------------- /project-euler/p593.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p593.cpp -------------------------------------------------------------------------------- /project-euler/p596.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p596.py -------------------------------------------------------------------------------- /project-euler/p598.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p598.py -------------------------------------------------------------------------------- /project-euler/p599.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p599.sage -------------------------------------------------------------------------------- /project-euler/p600.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p600.py -------------------------------------------------------------------------------- /project-euler/p601.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p601.sage -------------------------------------------------------------------------------- /project-euler/p602.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p602.py -------------------------------------------------------------------------------- /project-euler/p603.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p603.sage -------------------------------------------------------------------------------- /project-euler/p604.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p604.py -------------------------------------------------------------------------------- /project-euler/p605.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p605.py -------------------------------------------------------------------------------- /project-euler/p609.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p609.cpp -------------------------------------------------------------------------------- /project-euler/p612.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p612.cpp -------------------------------------------------------------------------------- /project-euler/p78/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/project-euler/p78/solution.cpp -------------------------------------------------------------------------------- /regional/china-final-2016/I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/china-final-2016/I.cpp -------------------------------------------------------------------------------- /regional/dhaka-2012/K.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/dhaka-2012/K.cpp -------------------------------------------------------------------------------- /regional/fuzhou-2010/C-wa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/fuzhou-2010/C-wa.cpp -------------------------------------------------------------------------------- /regional/latin-america-2012/J.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/latin-america-2012/J.cpp -------------------------------------------------------------------------------- /regional/neerc-2007/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/neerc-2007/A.cpp -------------------------------------------------------------------------------- /regional/neerc-2007/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/neerc-2007/B.cpp -------------------------------------------------------------------------------- /regional/neerc-2007/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/neerc-2007/C.cpp -------------------------------------------------------------------------------- /regional/neerc-2007/E/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/neerc-2007/E/Main.java -------------------------------------------------------------------------------- /regional/neerc-2007/L.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/regional/neerc-2007/L.cpp -------------------------------------------------------------------------------- /sgu/p100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p100.cpp -------------------------------------------------------------------------------- /sgu/p101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p101.cpp -------------------------------------------------------------------------------- /sgu/p102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p102.cpp -------------------------------------------------------------------------------- /sgu/p103.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p103.cpp -------------------------------------------------------------------------------- /sgu/p104.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p104.cpp -------------------------------------------------------------------------------- /sgu/p105.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p105.cpp -------------------------------------------------------------------------------- /sgu/p106.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p106.cpp -------------------------------------------------------------------------------- /sgu/p107.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p107.cpp -------------------------------------------------------------------------------- /sgu/p108.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p108.cpp -------------------------------------------------------------------------------- /sgu/p109.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p109.cpp -------------------------------------------------------------------------------- /sgu/p110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p110.cpp -------------------------------------------------------------------------------- /sgu/p111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p111.cpp -------------------------------------------------------------------------------- /sgu/p112/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p112/Solution.java -------------------------------------------------------------------------------- /sgu/p113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p113.cpp -------------------------------------------------------------------------------- /sgu/p114.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p114.cpp -------------------------------------------------------------------------------- /sgu/p115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p115.cpp -------------------------------------------------------------------------------- /sgu/p116.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p116.cpp -------------------------------------------------------------------------------- /sgu/p117.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p117.cpp -------------------------------------------------------------------------------- /sgu/p118.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p118.cpp -------------------------------------------------------------------------------- /sgu/p120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p120.cpp -------------------------------------------------------------------------------- /sgu/p121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p121.cpp -------------------------------------------------------------------------------- /sgu/p122/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p122/Solution.java -------------------------------------------------------------------------------- /sgu/p123/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p123/Solution.java -------------------------------------------------------------------------------- /sgu/p124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p124.cpp -------------------------------------------------------------------------------- /sgu/p125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p125.cpp -------------------------------------------------------------------------------- /sgu/p126.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p126.cpp -------------------------------------------------------------------------------- /sgu/p127.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p127.cpp -------------------------------------------------------------------------------- /sgu/p128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p128.cpp -------------------------------------------------------------------------------- /sgu/p129.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p129.cpp -------------------------------------------------------------------------------- /sgu/p130.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p130.cpp -------------------------------------------------------------------------------- /sgu/p131.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p131.cpp -------------------------------------------------------------------------------- /sgu/p132.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p132.cpp -------------------------------------------------------------------------------- /sgu/p133/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p133/Solution.java -------------------------------------------------------------------------------- /sgu/p134.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p134.cpp -------------------------------------------------------------------------------- /sgu/p135.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p135.cpp -------------------------------------------------------------------------------- /sgu/p136.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p136.cpp -------------------------------------------------------------------------------- /sgu/p137.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p137.cpp -------------------------------------------------------------------------------- /sgu/p138.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p138.cpp -------------------------------------------------------------------------------- /sgu/p139.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p139.cpp -------------------------------------------------------------------------------- /sgu/p140.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p140.cpp -------------------------------------------------------------------------------- /sgu/p141.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p141.cpp -------------------------------------------------------------------------------- /sgu/p142.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p142.cpp -------------------------------------------------------------------------------- /sgu/p143.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p143.cpp -------------------------------------------------------------------------------- /sgu/p144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p144.cpp -------------------------------------------------------------------------------- /sgu/p145.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p145.cpp -------------------------------------------------------------------------------- /sgu/p146/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p146/Solution.java -------------------------------------------------------------------------------- /sgu/p147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p147.cpp -------------------------------------------------------------------------------- /sgu/p148.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p148.cpp -------------------------------------------------------------------------------- /sgu/p149.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p149.cpp -------------------------------------------------------------------------------- /sgu/p150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p150.cpp -------------------------------------------------------------------------------- /sgu/p151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p151.cpp -------------------------------------------------------------------------------- /sgu/p152.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p152.cpp -------------------------------------------------------------------------------- /sgu/p153.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p153.cpp -------------------------------------------------------------------------------- /sgu/p154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p154.cpp -------------------------------------------------------------------------------- /sgu/p155.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p155.cpp -------------------------------------------------------------------------------- /sgu/p156.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p156.cpp -------------------------------------------------------------------------------- /sgu/p157.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p157.cpp -------------------------------------------------------------------------------- /sgu/p158.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p158.cpp -------------------------------------------------------------------------------- /sgu/p159/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p159/Solution.java -------------------------------------------------------------------------------- /sgu/p160.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p160.cpp -------------------------------------------------------------------------------- /sgu/p161/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p161/Solution.java -------------------------------------------------------------------------------- /sgu/p162.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p162.cpp -------------------------------------------------------------------------------- /sgu/p163.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p163.cpp -------------------------------------------------------------------------------- /sgu/p164.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p164.cpp -------------------------------------------------------------------------------- /sgu/p165.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p165.cpp -------------------------------------------------------------------------------- /sgu/p166.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p166.cpp -------------------------------------------------------------------------------- /sgu/p167.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p167.cpp -------------------------------------------------------------------------------- /sgu/p168.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p168.cpp -------------------------------------------------------------------------------- /sgu/p169.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p169.cpp -------------------------------------------------------------------------------- /sgu/p170.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p170.cpp -------------------------------------------------------------------------------- /sgu/p171.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p171.cpp -------------------------------------------------------------------------------- /sgu/p172.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p172.cpp -------------------------------------------------------------------------------- /sgu/p173.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p173.cpp -------------------------------------------------------------------------------- /sgu/p174.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p174.cpp -------------------------------------------------------------------------------- /sgu/p175.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p175.cpp -------------------------------------------------------------------------------- /sgu/p176.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p176.cpp -------------------------------------------------------------------------------- /sgu/p177.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p177.cpp -------------------------------------------------------------------------------- /sgu/p178.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p178.cpp -------------------------------------------------------------------------------- /sgu/p179.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p179.cpp -------------------------------------------------------------------------------- /sgu/p180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p180.cpp -------------------------------------------------------------------------------- /sgu/p181.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p181.cpp -------------------------------------------------------------------------------- /sgu/p182/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p182/Solution.java -------------------------------------------------------------------------------- /sgu/p183.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p183.cpp -------------------------------------------------------------------------------- /sgu/p184.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p184.cpp -------------------------------------------------------------------------------- /sgu/p185.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p185.cpp -------------------------------------------------------------------------------- /sgu/p186.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p186.cpp -------------------------------------------------------------------------------- /sgu/p187.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p187.cpp -------------------------------------------------------------------------------- /sgu/p188.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p188.cpp -------------------------------------------------------------------------------- /sgu/p189/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p189/Solution.java -------------------------------------------------------------------------------- /sgu/p190.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p190.cpp -------------------------------------------------------------------------------- /sgu/p191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p191.cpp -------------------------------------------------------------------------------- /sgu/p192/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p192/Solution.java -------------------------------------------------------------------------------- /sgu/p194.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p194.cpp -------------------------------------------------------------------------------- /sgu/p195.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p195.cpp -------------------------------------------------------------------------------- /sgu/p196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p196.cpp -------------------------------------------------------------------------------- /sgu/p197/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p197/Solution.java -------------------------------------------------------------------------------- /sgu/p198.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p198.cpp -------------------------------------------------------------------------------- /sgu/p199.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p199.cpp -------------------------------------------------------------------------------- /sgu/p200.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p200.cpp -------------------------------------------------------------------------------- /sgu/p201/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p201/Solution.java -------------------------------------------------------------------------------- /sgu/p202/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p202/Solution.java -------------------------------------------------------------------------------- /sgu/p203.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p203.cpp -------------------------------------------------------------------------------- /sgu/p205/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p205/Solution.java -------------------------------------------------------------------------------- /sgu/p206/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p206/Solution.java -------------------------------------------------------------------------------- /sgu/p207/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p207/Solution.java -------------------------------------------------------------------------------- /sgu/p208.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p208.cpp -------------------------------------------------------------------------------- /sgu/p209.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p209.cpp -------------------------------------------------------------------------------- /sgu/p210.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p210.cpp -------------------------------------------------------------------------------- /sgu/p212.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p212.cpp -------------------------------------------------------------------------------- /sgu/p213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p213.cpp -------------------------------------------------------------------------------- /sgu/p214.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p214.cpp -------------------------------------------------------------------------------- /sgu/p216.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p216.cpp -------------------------------------------------------------------------------- /sgu/p218.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p218.cpp -------------------------------------------------------------------------------- /sgu/p220: -------------------------------------------------------------------------------- 1 | p221 -------------------------------------------------------------------------------- /sgu/p221/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p221/Solution.java -------------------------------------------------------------------------------- /sgu/p222/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p222/Solution.java -------------------------------------------------------------------------------- /sgu/p223.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p223.cpp -------------------------------------------------------------------------------- /sgu/p224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p224.cpp -------------------------------------------------------------------------------- /sgu/p226.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p226.cpp -------------------------------------------------------------------------------- /sgu/p228.cpp: -------------------------------------------------------------------------------- 1 | p120.cpp -------------------------------------------------------------------------------- /sgu/p229.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p229.cpp -------------------------------------------------------------------------------- /sgu/p230/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p230/Solution.java -------------------------------------------------------------------------------- /sgu/p231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p231.cpp -------------------------------------------------------------------------------- /sgu/p239/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p239/Solution.java -------------------------------------------------------------------------------- /sgu/p247/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p247/Solution.java -------------------------------------------------------------------------------- /sgu/p248/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p248/Solution.java -------------------------------------------------------------------------------- /sgu/p249.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p249.cpp -------------------------------------------------------------------------------- /sgu/p259/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p259/Solution.java -------------------------------------------------------------------------------- /sgu/p262.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p262.cpp -------------------------------------------------------------------------------- /sgu/p269/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p269/Solution.java -------------------------------------------------------------------------------- /sgu/p270.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p270.cpp -------------------------------------------------------------------------------- /sgu/p275/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p275/Solution.java -------------------------------------------------------------------------------- /sgu/p277.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p277.cpp -------------------------------------------------------------------------------- /sgu/p278.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p278.cpp -------------------------------------------------------------------------------- /sgu/p279.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p279.cpp -------------------------------------------------------------------------------- /sgu/p280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p280.cpp -------------------------------------------------------------------------------- /sgu/p281.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p281.cpp -------------------------------------------------------------------------------- /sgu/p282.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p282.cpp -------------------------------------------------------------------------------- /sgu/p284/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p284/Solution.java -------------------------------------------------------------------------------- /sgu/p286.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p286.cpp -------------------------------------------------------------------------------- /sgu/p289.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p289.cpp -------------------------------------------------------------------------------- /sgu/p294/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p294/Solution.java -------------------------------------------------------------------------------- /sgu/p296/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p296/Solution.java -------------------------------------------------------------------------------- /sgu/p297/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p297/Solution.java -------------------------------------------------------------------------------- /sgu/p298.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p298.cpp -------------------------------------------------------------------------------- /sgu/p299/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p299/Solution.java -------------------------------------------------------------------------------- /sgu/p304.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p304.cpp -------------------------------------------------------------------------------- /sgu/p305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p305.cpp -------------------------------------------------------------------------------- /sgu/p307.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p307.cpp -------------------------------------------------------------------------------- /sgu/p309.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p309.cpp -------------------------------------------------------------------------------- /sgu/p310/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p310/Solution.java -------------------------------------------------------------------------------- /sgu/p311.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p311.cpp -------------------------------------------------------------------------------- /sgu/p317.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p317.cpp -------------------------------------------------------------------------------- /sgu/p318/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p318/Solution.java -------------------------------------------------------------------------------- /sgu/p319.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p319.cpp -------------------------------------------------------------------------------- /sgu/p321.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p321.cpp -------------------------------------------------------------------------------- /sgu/p322.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p322.cpp -------------------------------------------------------------------------------- /sgu/p323.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p323.cpp -------------------------------------------------------------------------------- /sgu/p325.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p325.cpp -------------------------------------------------------------------------------- /sgu/p326.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p326.cpp -------------------------------------------------------------------------------- /sgu/p327/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p327/Solution.java -------------------------------------------------------------------------------- /sgu/p330/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p330/Solution.java -------------------------------------------------------------------------------- /sgu/p337.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p337.cpp -------------------------------------------------------------------------------- /sgu/p339.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p339.cpp -------------------------------------------------------------------------------- /sgu/p342/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p342/Solution.java -------------------------------------------------------------------------------- /sgu/p344.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p344.cpp -------------------------------------------------------------------------------- /sgu/p347.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p347.cpp -------------------------------------------------------------------------------- /sgu/p350/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p350/Solution.java -------------------------------------------------------------------------------- /sgu/p352.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p352.cpp -------------------------------------------------------------------------------- /sgu/p354.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p354.cpp -------------------------------------------------------------------------------- /sgu/p355.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p355.cpp -------------------------------------------------------------------------------- /sgu/p356/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p356/Solution.java -------------------------------------------------------------------------------- /sgu/p357/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p357/Solution.java -------------------------------------------------------------------------------- /sgu/p358/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p358/Solution.java -------------------------------------------------------------------------------- /sgu/p361.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p361.cpp -------------------------------------------------------------------------------- /sgu/p362/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p362/Solution.java -------------------------------------------------------------------------------- /sgu/p365/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p365/Solution.java -------------------------------------------------------------------------------- /sgu/p367.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p367.cpp -------------------------------------------------------------------------------- /sgu/p370.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p370.cpp -------------------------------------------------------------------------------- /sgu/p372.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p372.cpp -------------------------------------------------------------------------------- /sgu/p374/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p374/Solution.java -------------------------------------------------------------------------------- /sgu/p375.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p375.cpp -------------------------------------------------------------------------------- /sgu/p379/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p379/Solution.java -------------------------------------------------------------------------------- /sgu/p381.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p381.cpp -------------------------------------------------------------------------------- /sgu/p384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p384.cpp -------------------------------------------------------------------------------- /sgu/p389/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p389/Solution.java -------------------------------------------------------------------------------- /sgu/p390/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p390/Solution.java -------------------------------------------------------------------------------- /sgu/p397.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p397.cpp -------------------------------------------------------------------------------- /sgu/p398.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p398.cpp -------------------------------------------------------------------------------- /sgu/p404/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p404/Solution.java -------------------------------------------------------------------------------- /sgu/p405/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p405/Solution.java -------------------------------------------------------------------------------- /sgu/p406/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p406/Solution.java -------------------------------------------------------------------------------- /sgu/p407/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p407/Solution.java -------------------------------------------------------------------------------- /sgu/p409.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p409.cpp -------------------------------------------------------------------------------- /sgu/p410.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p410.cpp -------------------------------------------------------------------------------- /sgu/p411.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p411.cpp -------------------------------------------------------------------------------- /sgu/p415/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p415/Solution.java -------------------------------------------------------------------------------- /sgu/p443/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p443/Solution.java -------------------------------------------------------------------------------- /sgu/p444.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p444.cpp -------------------------------------------------------------------------------- /sgu/p455.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p455.cpp -------------------------------------------------------------------------------- /sgu/p458.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p458.cpp -------------------------------------------------------------------------------- /sgu/p502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p502.cpp -------------------------------------------------------------------------------- /sgu/p527.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p527.cpp -------------------------------------------------------------------------------- /sgu/p529.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p529.cpp -------------------------------------------------------------------------------- /sgu/p536.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/sgu/p536.cpp -------------------------------------------------------------------------------- /soj/p3098.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/soj/p3098.cpp -------------------------------------------------------------------------------- /spoj/COT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/spoj/COT.cpp -------------------------------------------------------------------------------- /spoj/GEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/spoj/GEN.cpp -------------------------------------------------------------------------------- /timus/p1132.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/timus/p1132.cpp -------------------------------------------------------------------------------- /timus/p1173.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/timus/p1173.cpp -------------------------------------------------------------------------------- /timus/p1469.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/timus/p1469.cpp -------------------------------------------------------------------------------- /timus/p1855.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/timus/p1855.cpp -------------------------------------------------------------------------------- /timus/p1978.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/timus/p1978.cpp -------------------------------------------------------------------------------- /topcoder/AkariDaisukiDiv1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/AkariDaisukiDiv1.java -------------------------------------------------------------------------------- /topcoder/AntsMeet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/AntsMeet.java -------------------------------------------------------------------------------- /topcoder/ArtShift.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/ArtShift.java -------------------------------------------------------------------------------- /topcoder/BinaryPolynomialDivOne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/BinaryPolynomialDivOne.java -------------------------------------------------------------------------------- /topcoder/BlackWhiteMagic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/BlackWhiteMagic.java -------------------------------------------------------------------------------- /topcoder/CandidateKeys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/CandidateKeys.java -------------------------------------------------------------------------------- /topcoder/CarrotBoxes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/CarrotBoxes.java -------------------------------------------------------------------------------- /topcoder/CirclesGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/CirclesGame.java -------------------------------------------------------------------------------- /topcoder/ColorfulCards.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/ColorfulCards.java -------------------------------------------------------------------------------- /topcoder/ColorfulCookie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/ColorfulCookie.java -------------------------------------------------------------------------------- /topcoder/DrivingAround.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/DrivingAround.java -------------------------------------------------------------------------------- /topcoder/DropCoins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/DropCoins.java -------------------------------------------------------------------------------- /topcoder/EllysXors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/EllysXors.java -------------------------------------------------------------------------------- /topcoder/EqualizeStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/EqualizeStrings.java -------------------------------------------------------------------------------- /topcoder/FavouriteDigits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/FavouriteDigits.java -------------------------------------------------------------------------------- /topcoder/FleaCircus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/FleaCircus.java -------------------------------------------------------------------------------- /topcoder/FoxAndVacation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/FoxAndVacation.java -------------------------------------------------------------------------------- /topcoder/FoxListeningToMusic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/FoxListeningToMusic.java -------------------------------------------------------------------------------- /topcoder/GuessTheNumberGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/GuessTheNumberGame.java -------------------------------------------------------------------------------- /topcoder/ImportantSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/ImportantSequence.java -------------------------------------------------------------------------------- /topcoder/KleofasTail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/KleofasTail.java -------------------------------------------------------------------------------- /topcoder/MinimumLiars.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/MinimumLiars.java -------------------------------------------------------------------------------- /topcoder/MonochromePuzzle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/MonochromePuzzle.java -------------------------------------------------------------------------------- /topcoder/MonstersValley.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/MonstersValley.java -------------------------------------------------------------------------------- /topcoder/MuddyRoad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/MuddyRoad.java -------------------------------------------------------------------------------- /topcoder/NewArenaPassword.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/NewArenaPassword.java -------------------------------------------------------------------------------- /topcoder/Nisoku.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/Nisoku.java -------------------------------------------------------------------------------- /topcoder/OptimalQueues.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/OptimalQueues.java -------------------------------------------------------------------------------- /topcoder/OrderedNim.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/OrderedNim.java -------------------------------------------------------------------------------- /topcoder/PatrolRoute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/PatrolRoute.java -------------------------------------------------------------------------------- /topcoder/PerfectPermutation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/PerfectPermutation.java -------------------------------------------------------------------------------- /topcoder/PrefixFreeSuperset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/PrefixFreeSuperset.java -------------------------------------------------------------------------------- /topcoder/RabbitNumbering.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/RabbitNumbering.java -------------------------------------------------------------------------------- /topcoder/RandomColoring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/RandomColoring.java -------------------------------------------------------------------------------- /topcoder/RandomSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/RandomSort.cpp -------------------------------------------------------------------------------- /topcoder/ReverseResources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/ReverseResources.java -------------------------------------------------------------------------------- /topcoder/RowOfColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/RowOfColors.java -------------------------------------------------------------------------------- /topcoder/Rumor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/Rumor.java -------------------------------------------------------------------------------- /topcoder/SPartition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/SPartition.java -------------------------------------------------------------------------------- /topcoder/STable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/STable.java -------------------------------------------------------------------------------- /topcoder/StrangeCountry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/StrangeCountry.java -------------------------------------------------------------------------------- /topcoder/TagalogDictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/TagalogDictionary.java -------------------------------------------------------------------------------- /topcoder/TheDivisionGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/TheDivisionGame.cpp -------------------------------------------------------------------------------- /topcoder/TheLuckyString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/TheLuckyString.cpp -------------------------------------------------------------------------------- /topcoder/TrappingRabbit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/TrappingRabbit.java -------------------------------------------------------------------------------- /topcoder/TripleStrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/TripleStrings.java -------------------------------------------------------------------------------- /topcoder/TwoLotteryGames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/topcoder/TwoLotteryGames.java -------------------------------------------------------------------------------- /uoj/p192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/uoj/p192.cpp -------------------------------------------------------------------------------- /zoj/p2112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/zoj/p2112.cpp -------------------------------------------------------------------------------- /zoj/p2676.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/zoj/p2676.cpp -------------------------------------------------------------------------------- /zoj/p3686.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/zoj/p3686.cpp -------------------------------------------------------------------------------- /zoj/p3812.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/zoj/p3812.cpp -------------------------------------------------------------------------------- /zoj/p3940.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftiasch/acm-icpc/HEAD/zoj/p3940.cpp --------------------------------------------------------------------------------