結果

問題 No.2432 Flip and Move
ユーザー Akijin_007Akijin_007
提出日時 2023-08-18 22:39:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 644 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 421,504 KB
最終ジャッジ日時 2024-11-28 08:41:39
合計ジャッジ時間 25,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,216 KB
testcase_01 AC 41 ms
315,392 KB
testcase_02 TLE -
testcase_03 AC 306 ms
421,504 KB
testcase_04 AC 128 ms
89,600 KB
testcase_05 AC 127 ms
346,880 KB
testcase_06 TLE -
testcase_07 AC 223 ms
393,216 KB
testcase_08 AC 244 ms
139,904 KB
testcase_09 AC 283 ms
419,200 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 125 ms
96,000 KB
testcase_15 AC 249 ms
144,512 KB
testcase_16 AC 136 ms
79,744 KB
testcase_17 AC 136 ms
83,584 KB
testcase_18 AC 94 ms
78,720 KB
testcase_19 AC 130 ms
82,048 KB
testcase_20 AC 130 ms
84,736 KB
testcase_21 AC 146 ms
81,408 KB
testcase_22 AC 335 ms
82,944 KB
testcase_23 AC 98 ms
78,592 KB
testcase_24 AC 138 ms
82,688 KB
testcase_25 AC 122 ms
81,536 KB
testcase_26 AC 121 ms
83,328 KB
testcase_27 AC 71 ms
73,728 KB
testcase_28 AC 70 ms
69,248 KB
testcase_29 AC 168 ms
81,280 KB
testcase_30 AC 138 ms
83,968 KB
testcase_31 AC 127 ms
82,048 KB
testcase_32 AC 79 ms
76,288 KB
testcase_33 AC 166 ms
83,840 KB
testcase_34 AC 129 ms
80,000 KB
testcase_35 AC 108 ms
81,152 KB
testcase_36 AC 39 ms
51,968 KB
testcase_37 AC 40 ms
51,840 KB
testcase_38 AC 40 ms
314,240 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):
    a = ""
    for j in range(W):
        if ans[i][j] % 2 == 0:
            a += "."
        else:
            a += "#"
    print(a)




0