結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 87 ms
70,912 KB
testcase_03 AC 431 ms
163,712 KB
testcase_04 AC 71 ms
71,424 KB
testcase_05 AC 70 ms
71,552 KB
testcase_06 AC 68 ms
67,200 KB
testcase_07 AC 292 ms
132,992 KB
testcase_08 AC 317 ms
135,680 KB
testcase_09 AC 431 ms
160,256 KB
testcase_10 AC 72 ms
67,328 KB
testcase_11 AC 84 ms
68,224 KB
testcase_12 AC 70 ms
66,176 KB
testcase_13 AC 75 ms
69,120 KB
testcase_14 AC 160 ms
95,616 KB
testcase_15 AC 343 ms
143,744 KB
testcase_16 AC 85 ms
68,736 KB
testcase_17 AC 137 ms
83,200 KB
testcase_18 AC 75 ms
73,600 KB
testcase_19 AC 132 ms
82,048 KB
testcase_20 AC 113 ms
84,708 KB
testcase_21 AC 141 ms
81,408 KB
testcase_22 AC 65 ms
67,968 KB
testcase_23 AC 92 ms
78,464 KB
testcase_24 AC 113 ms
83,200 KB
testcase_25 AC 116 ms
81,280 KB
testcase_26 AC 114 ms
82,816 KB
testcase_27 AC 50 ms
61,056 KB
testcase_28 AC 58 ms
64,000 KB
testcase_29 AC 125 ms
72,576 KB
testcase_30 AC 133 ms
83,968 KB
testcase_31 AC 85 ms
71,296 KB
testcase_32 AC 62 ms
63,104 KB
testcase_33 AC 145 ms
83,584 KB
testcase_34 AC 73 ms
67,456 KB
testcase_35 AC 79 ms
73,856 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 37 ms
52,096 KB
testcase_38 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
from math import gcd
l = h * w // gcd(h,w) * 2
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