Здесь показаны различия между двумя версиями данной страницы.
Предыдущая версия справа и слева Предыдущая версия Следующая версия | Предыдущая версия | ||
10i_2025_algo [2024/10/18 16:25] super_admin [Алгоритмы для исполнителя Черепаха] |
10i_2025_algo [2024/10/24 16:49] (текущий) super_admin [Алгоритмы из Codingame] |
||
---|---|---|---|
Строка 61: | Строка 61: | ||
<code Python> | <code Python> | ||
+ | # Автор: Леднёв Алексей | ||
a = [i for i in input().split()] | a = [i for i in input().split()] | ||
k = len(a)*2-1 | k = len(a)*2-1 | ||
Строка 74: | Строка 75: | ||
| | ||
''' | ''' | ||
+ | input | ||
1 2 3 | 1 2 3 | ||
+ | output | ||
1 1 1 1 1 | 1 1 1 1 1 | ||
1 2 2 2 1 | 1 2 2 2 1 | ||
Строка 81: | Строка 84: | ||
1 1 1 1 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> | </code> | ||
==== Codingame ==== | ==== Codingame ==== | ||
Строка 106: | Строка 115: | ||
- https://www.codingame.com/clashofcode/clash/388174749d606a3990891ea0c15dd097e45144e | - https://www.codingame.com/clashofcode/clash/388174749d606a3990891ea0c15dd097e45144e | ||
- https://www.codingame.com/clashofcode/clash/38817641f823dea30a9923f1fcd0915a4713944 | - 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 |