結果

問題 No.2432 Flip and Move
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-18 23:15:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 146,832 KB
最終ジャッジ日時 2024-11-28 10:04:39
合計ジャッジ時間 10,895 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,692 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 153 ms
117,760 KB
testcase_03 AC 319 ms
146,832 KB
testcase_04 AC 103 ms
115,712 KB
testcase_05 AC 104 ms
115,424 KB
testcase_06 AC 140 ms
101,232 KB
testcase_07 AC 266 ms
121,792 KB
testcase_08 AC 257 ms
125,892 KB
testcase_09 AC 329 ms
143,848 KB
testcase_10 AC 124 ms
99,840 KB
testcase_11 AC 164 ms
104,320 KB
testcase_12 AC 119 ms
95,616 KB
testcase_13 AC 169 ms
110,912 KB
testcase_14 AC 141 ms
91,332 KB
testcase_15 AC 289 ms
134,176 KB
testcase_16 AC 239 ms
91,416 KB
testcase_17 AC 297 ms
111,356 KB
testcase_18 AC 139 ms
86,284 KB
testcase_19 AC 263 ms
102,220 KB
testcase_20 AC 279 ms
115,268 KB
testcase_21 AC 378 ms
102,708 KB
testcase_22 AC 219 ms
105,604 KB
testcase_23 AC 147 ms
84,028 KB
testcase_24 AC 280 ms
108,524 KB
testcase_25 AC 242 ms
100,124 KB
testcase_26 AC 219 ms
107,368 KB
testcase_27 AC 85 ms
76,416 KB
testcase_28 AC 97 ms
76,876 KB
testcase_29 AC 423 ms
100,492 KB
testcase_30 AC 431 ms
112,428 KB
testcase_31 AC 265 ms
104,144 KB
testcase_32 AC 107 ms
78,220 KB
testcase_33 AC 405 ms
112,832 KB
testcase_34 AC 264 ms
93,732 KB
testcase_35 AC 201 ms
100,464 KB
testcase_36 AC 37 ms
52,096 KB
testcase_37 AC 37 ms
52,736 KB
testcase_38 AC 38 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

やるだけ

"""

import sys
from sys import stdin

H,W = map(int,stdin.readline().split())
K = int(stdin.readline())

ans = [0] * (H*W)

state = [-1 for i in range(4*H*W)]

x,y = 0,0
UD = 1
LR = 1

step = 0
while True:

    step += 1
    K -= 1
    ans[x*W+y] ^= 1

    if UD == 0 and x == 0:
        UD = 1
    elif UD == 1 and x == H-1:
        UD = 0
    elif UD == 0:
        x -= 1
    else:
        x += 1

    if LR == 0 and y == 0:
        LR = 1
    elif LR == 1 and y == W-1:
        LR = 0
    elif LR == 0:
        y -= 1
    else:
        y += 1

    UDLR = 2*UD+LR

    idx = UDLR*H*W + x*W + y

    if state[idx] == -1:
        state[idx] = step
    else:
        diff = step - state[idx]
        K %= 2*diff
        state[idx] = step
    
    if K == 0:
        break

ANS = [ "".join(["#" if ans[i*W+j]==1 else "." for j in range(W)]) for i in range(H)]

print (*ANS,sep="\n")
0