結果

問題 No.2432 Flip and Move
ユーザー Akijin_007Akijin_007
提出日時 2023-08-18 22:41:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 207,104 KB
最終ジャッジ日時 2024-11-28 08:47:28
合計ジャッジ時間 10,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 147 ms
91,392 KB
testcase_03 AC 680 ms
207,104 KB
testcase_04 AC 119 ms
88,320 KB
testcase_05 AC 119 ms
88,320 KB
testcase_06 AC 109 ms
86,400 KB
testcase_07 AC 481 ms
161,920 KB
testcase_08 AC 469 ms
168,192 KB
testcase_09 AC 636 ms
203,264 KB
testcase_10 AC 120 ms
85,760 KB
testcase_11 AC 135 ms
87,040 KB
testcase_12 AC 114 ms
84,480 KB
testcase_13 AC 123 ms
86,832 KB
testcase_14 AC 213 ms
106,752 KB
testcase_15 AC 549 ms
185,344 KB
testcase_16 AC 125 ms
78,976 KB
testcase_17 AC 162 ms
87,296 KB
testcase_18 AC 109 ms
79,232 KB
testcase_19 AC 156 ms
85,504 KB
testcase_20 AC 172 ms
91,392 KB
testcase_21 AC 157 ms
85,120 KB
testcase_22 AC 121 ms
85,888 KB
testcase_23 AC 110 ms
78,976 KB
testcase_24 AC 150 ms
86,400 KB
testcase_25 AC 147 ms
85,504 KB
testcase_26 AC 160 ms
89,344 KB
testcase_27 AC 74 ms
69,760 KB
testcase_28 AC 79 ms
70,784 KB
testcase_29 AC 161 ms
85,248 KB
testcase_30 AC 170 ms
87,424 KB
testcase_31 AC 139 ms
85,248 KB
testcase_32 AC 75 ms
68,992 KB
testcase_33 AC 189 ms
86,784 KB
testcase_34 AC 118 ms
80,128 KB
testcase_35 AC 125 ms
85,632 KB
testcase_36 AC 43 ms
52,224 KB
testcase_37 AC 43 ms
51,584 KB
testcase_38 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

H, W = map(int, input().split())
K = int(input())

from math import gcd
N = 2 * H * W // gcd(H, W)

K %= N

ans = [[0] * W for i in range(H)]
for i in range(K):
    ux, vx = divmod(i, 2*H)
    uy, vy = divmod(i, 2*W)
    # if ux % 2 == 1:
    #     vx = 2*H - vx
    # if uy % 2 == 1:
    #     vy = 2*W - vy
    vx = min(vx, 2*H-vx-1)
    vy = min(vy, 2*W-vy-1)
    # print(H, W, vx, vy)

    ans[vx][vy] += 1

for i in range(H):
    for j in range(W):
        if ans[i][j] % 2 == 0:
            ans[i][j] = "."
        else:
            ans[i][j] = "#"
    print("".join(ans[i]))




0