We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdef5d6 commit 06147d1Copy full SHA for 06147d1
CCC Answers/ccc18s2.py
@@ -1,17 +1,20 @@
1
# https://dmoj.ca/problem/ccc18s2
2
# Kevin Lu
3
4
+# inputs
5
grid = [[int(n) for n in input().split()] for _ in range(int(input()))]
6
FIX_HORI = grid[0][0] > grid[0][1]
7
FIX_VERT = grid[0][0] > grid[1][0]
8
9
+# processing
10
if FIX_HORI and FIX_VERT:
11
grid = [row[::-1] for row in grid[::-1]]
12
elif not FIX_HORI and FIX_VERT:
13
grid = [row for row in grid[::-1]]
14
elif FIX_HORI and not FIX_VERT:
15
grid = [row[::-1] for row in grid]
16
17
+# output
18
[print(' '.join(map(str, row))) for row in grid]
19
20
"""
0 commit comments