結果

問題 No.2432 Flip and Move
ユーザー tassei903tassei903
提出日時 2023-08-11 22:17:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 163,584 KB
最終ジャッジ日時 2024-11-28 04:18:55
合計ジャッジ時間 9,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 118 ms
72,448 KB
testcase_03 AC 460 ms
163,584 KB
testcase_04 AC 189 ms
83,328 KB
testcase_05 AC 66 ms
71,040 KB
testcase_06 AC 130 ms
69,632 KB
testcase_07 AC 331 ms
132,736 KB
testcase_08 AC 298 ms
135,168 KB
testcase_09 AC 393 ms
159,744 KB
testcase_10 AC 93 ms
68,480 KB
testcase_11 AC 131 ms
69,632 KB
testcase_12 AC 90 ms
67,840 KB
testcase_13 AC 74 ms
68,992 KB
testcase_14 AC 167 ms
95,488 KB
testcase_15 AC 308 ms
143,232 KB
testcase_16 AC 123 ms
69,504 KB
testcase_17 AC 266 ms
83,200 KB
testcase_18 AC 120 ms
77,952 KB
testcase_19 AC 168 ms
82,176 KB
testcase_20 AC 238 ms
84,480 KB
testcase_21 AC 211 ms
81,152 KB
testcase_22 AC 174 ms
71,552 KB
testcase_23 AC 109 ms
77,952 KB
testcase_24 AC 272 ms
82,688 KB
testcase_25 AC 229 ms
80,896 KB
testcase_26 AC 162 ms
82,560 KB
testcase_27 AC 62 ms
64,640 KB
testcase_28 AC 56 ms
63,872 KB
testcase_29 AC 168 ms
73,088 KB
testcase_30 AC 127 ms
83,328 KB
testcase_31 AC 232 ms
81,024 KB
testcase_32 AC 66 ms
63,616 KB
testcase_33 AC 151 ms
82,816 KB
testcase_34 AC 124 ms
70,656 KB
testcase_35 AC 158 ms
81,024 KB
testcase_36 AC 36 ms
51,456 KB
testcase_37 AC 37 ms
51,328 KB
testcase_38 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
k = int(input()) % (8 * h * w)

x,y = 0,0
dx,dy = 1,1

s = [["." for j in range(w)] for i in range(h)]

for _ in range(k):
    if s[x][y] == ".":
        s[x][y] = "#"
    else:
        s[x][y] = "."

    if x + dx < 0 or x + dx >= h:
        dx *= -1
    else:
        x += dx
    if y + dy < 0 or y + dy >= w:
        dy *= -1
    else:
        y += dy

for i in s:
    print("".join(i))
0