結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 133 ms
72,448 KB
testcase_03 AC 561 ms
163,072 KB
testcase_04 AC 85 ms
74,112 KB
testcase_05 AC 78 ms
71,424 KB
testcase_06 AC 94 ms
70,144 KB
testcase_07 AC 374 ms
132,352 KB
testcase_08 AC 367 ms
135,552 KB
testcase_09 AC 540 ms
160,384 KB
testcase_10 AC 108 ms
68,736 KB
testcase_11 AC 91 ms
67,840 KB
testcase_12 AC 102 ms
68,352 KB
testcase_13 AC 85 ms
69,376 KB
testcase_14 AC 191 ms
95,744 KB
testcase_15 AC 420 ms
143,872 KB
testcase_16 AC 106 ms
68,864 KB
testcase_17 AC 250 ms
83,200 KB
testcase_18 AC 112 ms
78,464 KB
testcase_19 AC 211 ms
82,176 KB
testcase_20 AC 197 ms
84,736 KB
testcase_21 AC 168 ms
81,152 KB
testcase_22 AC 162 ms
71,040 KB
testcase_23 AC 108 ms
77,952 KB
testcase_24 AC 239 ms
82,688 KB
testcase_25 AC 199 ms
81,536 KB
testcase_26 AC 148 ms
82,944 KB
testcase_27 AC 61 ms
62,336 KB
testcase_28 AC 64 ms
63,872 KB
testcase_29 AC 143 ms
72,704 KB
testcase_30 AC 159 ms
83,968 KB
testcase_31 AC 100 ms
71,168 KB
testcase_32 AC 67 ms
63,744 KB
testcase_33 AC 175 ms
83,584 KB
testcase_34 AC 89 ms
67,584 KB
testcase_35 AC 88 ms
73,088 KB
testcase_36 AC 41 ms
52,096 KB
testcase_37 AC 41 ms
52,224 KB
testcase_38 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
from math import gcd
l = h * w // gcd(h,w) * 4
k = int(input()) % l

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