結果

問題 No.2432 Flip and Move
ユーザー sotanishysotanishy
提出日時 2023-08-18 23:09:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 197,756 KB
最終ジャッジ日時 2024-11-28 09:49:44
合計ジャッジ時間 13,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 192 ms
118,080 KB
testcase_03 AC 545 ms
197,756 KB
testcase_04 AC 103 ms
115,284 KB
testcase_05 AC 102 ms
115,132 KB
testcase_06 AC 176 ms
97,852 KB
testcase_07 AC 397 ms
155,972 KB
testcase_08 AC 397 ms
162,304 KB
testcase_09 AC 525 ms
193,696 KB
testcase_10 AC 154 ms
102,036 KB
testcase_11 AC 174 ms
106,376 KB
testcase_12 AC 151 ms
98,056 KB
testcase_13 AC 190 ms
106,444 KB
testcase_14 AC 206 ms
104,760 KB
testcase_15 AC 452 ms
176,496 KB
testcase_16 AC 259 ms
92,504 KB
testcase_17 AC 432 ms
110,968 KB
testcase_18 AC 192 ms
87,804 KB
testcase_19 AC 359 ms
103,496 KB
testcase_20 AC 399 ms
115,016 KB
testcase_21 AC 405 ms
102,700 KB
testcase_22 AC 303 ms
106,240 KB
testcase_23 AC 175 ms
85,484 KB
testcase_24 AC 431 ms
109,632 KB
testcase_25 AC 353 ms
101,060 KB
testcase_26 AC 281 ms
107,168 KB
testcase_27 AC 115 ms
78,124 KB
testcase_28 AC 130 ms
77,728 KB
testcase_29 AC 377 ms
101,748 KB
testcase_30 AC 435 ms
112,480 KB
testcase_31 AC 305 ms
105,256 KB
testcase_32 AC 144 ms
79,084 KB
testcase_33 AC 459 ms
111,616 KB
testcase_34 AC 271 ms
94,720 KB
testcase_35 AC 227 ms
101,464 KB
testcase_36 AC 40 ms
52,096 KB
testcase_37 AC 40 ms
52,480 KB
testcase_38 AC 41 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def enc(i, j, S):
    return 4*(W*i+j)+S


def move(i, j, S):
    di = -1 if S & 1 else 1
    if 0 <= i + di < H:
        i += di
    else:
        S ^= 1
    dj = -1 if S & 2 else 1
    if 0 <= j + dj < W:
        j += dj
    else:
        S ^= 2
    return i, j, S


H, W = map(int, input().split())
K = int(input())
ans = [[0] * W for _ in range(H)]
time = [-1] * (4*H*W)
t = i = j = S = 0
while time[enc(i, j, S)] == -1:
    time[enc(i, j, S)] = t
    t += 1
    ans[i][j] ^= 1
    i, j, S = move(i, j, S)


t1 = time[enc(i, j, S)]
dt = t - t1
n, t2 = divmod(K - t1, dt)

for _ in range(dt):
    ans[i][j] ^= n % 2
    i, j, S = move(i, j, S)
for _ in range(t2):
    ans[i][j] ^= 1
    i, j, S = move(i, j, S)

for row in ans:
    print(''.join(map(lambda x: ".#"[x], row)))
0