Здесь показаны различия между двумя версиями данной страницы.
Предыдущая версия справа и слева Предыдущая версия Следующая версия | Предыдущая версия | ||
10i_2025_algo [2024/10/10 17:03] super_admin [Codingame] |
10i_2025_algo [2024/10/24 16:49] (текущий) super_admin [Алгоритмы из Codingame] |
||
---|---|---|---|
Строка 58: | Строка 58: | ||
* Алгоритмы для исполнителя Черепаха ч.2 | * Алгоритмы для исполнителя Черепаха ч.2 | ||
+ | ==== Алгоритмы из Codingame ==== | ||
+ | |||
+ | <code Python> | ||
+ | # Автор: Леднёв Алексей | ||
+ | a = [i for i in input().split()] | ||
+ | k = len(a)*2-1 | ||
+ | s = [[0 for i in range(k)]for i in range(k)] | ||
+ | for l in range(len(a)) : | ||
+ | for i in range(l,k-l) : | ||
+ | for j in range(l,k-l) : | ||
+ | if i == l or i == k-(l+1) or j == l or j == k-(l+1) : | ||
+ | s[i][j] = a[l] | ||
+ | |||
+ | for i in s : | ||
+ | print(*i) | ||
+ | | ||
+ | ''' | ||
+ | input | ||
+ | 1 2 3 | ||
+ | output | ||
+ | 1 1 1 1 1 | ||
+ | 1 2 2 2 1 | ||
+ | 1 2 3 2 1 | ||
+ | 1 2 2 2 1 | ||
+ | 1 1 1 1 1 | ||
+ | ''' | ||
+ | </code> | ||
+ | |||
+ | <code Python> | ||
+ | n = int(input()) | ||
+ | r = sum([int(input()) for i in range(n)]) | ||
+ | print(f'{["Foo", "Bar"][r<0]} & {["Qux", "Baz"][r%2 == 0]}') | ||
+ | </code> | ||
==== Codingame ==== | ==== Codingame ==== | ||
Строка 68: | Строка 101: | ||
- https://www.codingame.com/clashofcode/clash/38727230a4f5fc58f97a519e9ccd26a3800daf1 | - https://www.codingame.com/clashofcode/clash/38727230a4f5fc58f97a519e9ccd26a3800daf1 | ||
- https://www.codingame.com/clashofcode/clash/3872749a906852aefa7b48feb28f8ee3fe926cb | - https://www.codingame.com/clashofcode/clash/3872749a906852aefa7b48feb28f8ee3fe926cb | ||
+ | - https://www.codingame.com/clashofcode/clash/38727726c60aff168bc687f6c523f2a559c135d | ||
+ | |||
+ | **15.10.2024** | ||
+ | |||
+ | - https://www.codingame.com/clashofcode/clash/3878868eef1d1761ee7dcf5b2443ae163c21d8f | ||
+ | - https://www.codingame.com/clashofcode/clash/387890153d02de2ba999832979203a88d25a9d8 | ||
+ | |||
+ | **17.10.2024** | ||
+ | |||
+ | - https://www.codingame.com/clashofcode/clash/388169731a26aadb3fe1f99acefdd32e27a744e | ||
+ | - https://www.codingame.com/clashofcode/clash/388172011426d2bde84c52e0d8186a3c1d00d20 | ||
+ | - https://www.codingame.com/clashofcode/clash/388173775d8defecd19ecf643be9346f77d1fbb | ||
+ | - https://www.codingame.com/clashofcode/clash/388174749d606a3990891ea0c15dd097e45144e | ||
+ | - https://www.codingame.com/clashofcode/clash/38817641f823dea30a9923f1fcd0915a4713944 | ||
+ | |||
+ | **22.10.2024** | ||
+ | |||
+ | - https://www.codingame.com/clashofcode/clash/38882773ed69ec08c3c131b4ea2deb3585dd3b7 | ||
+ | - https://www.codingame.com/clashofcode/clash/3888303b4593ea9edcae98ca9f4269ed98d2290 | ||
+ | - https://www.codingame.com/clashofcode/clash/3888322b2ac7ff74811ffdab82f1d111483d91a | ||
+ | |||
+ | **24.10.2024** | ||
+ | |||
+ | - https://www.codingame.com/clashofcode/clash/389081723b18d5e80676437434bb8c5da3fc51f |