結果

問題 No.2432 Flip and Move
ユーザー rlangevinrlangevin
提出日時 2023-09-18 16:04:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 183,748 KB
最終ジャッジ日時 2024-07-05 06:32:05
合計ジャッジ時間 8,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,592 KB
testcase_01 AC 31 ms
53,048 KB
testcase_02 AC 222 ms
183,748 KB
testcase_03 AC 315 ms
161,208 KB
testcase_04 AC 120 ms
87,996 KB
testcase_05 AC 117 ms
87,964 KB
testcase_06 AC 150 ms
117,540 KB
testcase_07 AC 237 ms
132,168 KB
testcase_08 AC 230 ms
137,184 KB
testcase_09 AC 312 ms
158,032 KB
testcase_10 AC 155 ms
143,428 KB
testcase_11 AC 176 ms
152,496 KB
testcase_12 AC 142 ms
135,116 KB
testcase_13 AC 173 ms
130,004 KB
testcase_14 AC 122 ms
96,576 KB
testcase_15 AC 262 ms
146,824 KB
testcase_16 AC 104 ms
81,888 KB
testcase_17 AC 147 ms
87,140 KB
testcase_18 AC 93 ms
81,088 KB
testcase_19 AC 141 ms
85,204 KB
testcase_20 AC 148 ms
88,232 KB
testcase_21 AC 143 ms
84,592 KB
testcase_22 AC 112 ms
86,856 KB
testcase_23 AC 92 ms
79,400 KB
testcase_24 AC 140 ms
87,048 KB
testcase_25 AC 129 ms
84,516 KB
testcase_26 AC 137 ms
86,316 KB
testcase_27 AC 68 ms
77,276 KB
testcase_28 AC 65 ms
76,824 KB
testcase_29 AC 137 ms
84,256 KB
testcase_30 AC 151 ms
87,784 KB
testcase_31 AC 124 ms
85,116 KB
testcase_32 AC 64 ms
78,016 KB
testcase_33 AC 160 ms
87,452 KB
testcase_34 AC 103 ms
82,252 KB
testcase_35 AC 116 ms
84,148 KB
testcase_36 AC 33 ms
52,764 KB
testcase_37 AC 32 ms
53,932 KB
testcase_38 AC 32 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

H, W = map(int, input().split())
K = int(input())
lcm = H * W // gcd(H, W)
K %= 2 * lcm
x, y = 0, 0
G = [[0] * W for i in range(H)]

def plot(G, x, y):
    x %= 2 * H
    y %= 2 * W
    if x >= H:
        x = 2 * H - 1 - x
    if y >= W:
        y = 2 * W - 1 - y
    G[x][y] = 1 - G[x][y]

for _ in range(K):
    plot(G, x, y)
    x, y = x + 1, y + 1
    
def f(c):
    return "#" if c else "."

for i in range(H):
    ans = list(map(f, G[i]))
    print(*ans, sep="")
0