結果

問題 No.2432 Flip and Move
ユーザー ntudantuda
提出日時 2023-08-19 14:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 160,896 KB
最終ジャッジ日時 2024-11-29 07:17:26
合計ジャッジ時間 10,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 176 ms
92,672 KB
testcase_03 AC 455 ms
160,896 KB
testcase_04 AC 95 ms
83,584 KB
testcase_05 AC 94 ms
83,200 KB
testcase_06 AC 118 ms
84,992 KB
testcase_07 AC 335 ms
131,968 KB
testcase_08 AC 340 ms
136,192 KB
testcase_09 AC 449 ms
158,592 KB
testcase_10 AC 136 ms
86,528 KB
testcase_11 AC 160 ms
87,808 KB
testcase_12 AC 130 ms
84,736 KB
testcase_13 AC 136 ms
88,320 KB
testcase_14 AC 179 ms
96,768 KB
testcase_15 AC 376 ms
146,944 KB
testcase_16 AC 172 ms
78,976 KB
testcase_17 AC 246 ms
83,456 KB
testcase_18 AC 140 ms
79,232 KB
testcase_19 AC 225 ms
82,304 KB
testcase_20 AC 231 ms
84,992 KB
testcase_21 AC 244 ms
82,048 KB
testcase_22 AC 170 ms
81,408 KB
testcase_23 AC 154 ms
78,976 KB
testcase_24 AC 235 ms
82,816 KB
testcase_25 AC 198 ms
81,664 KB
testcase_26 AC 195 ms
83,968 KB
testcase_27 AC 89 ms
75,776 KB
testcase_28 AC 95 ms
76,032 KB
testcase_29 AC 234 ms
81,024 KB
testcase_30 AC 251 ms
83,968 KB
testcase_31 AC 159 ms
81,536 KB
testcase_32 AC 106 ms
76,288 KB
testcase_33 AC 280 ms
83,840 KB
testcase_34 AC 157 ms
79,360 KB
testcase_35 AC 139 ms
81,536 KB
testcase_36 AC 41 ms
51,840 KB
testcase_37 AC 40 ms
52,224 KB
testcase_38 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
K = int(input())
S = [[0] * W for _ in range(H)]

def turn(k):
    x, y = 0, 0
    dx, dy = 1, 1
    cycle = 0
    cnt = 0
    flag = 1
    while flag and cycle < k:
        cycle += 1
        S[x][y] ^= 1
        #print(x,y,S[x][y])
        if S[x][y] == 1:
            cnt+= 1
        else:
            cnt -= 1
        if cnt == 0:
            flag = 0
        if dx == 1:
            if x < H - 1:
                x += 1
            else:
                dx = -1
        else:
            if x > 0:
                x -= 1
            else:
                dx = 1
        if dy == 1:
            if y < W - 1:
                y += 1
            else:
                dy = -1
        else:
            if y > 0:
                y -= 1
            else:
                dy = 1
    return cycle

c = turn(K)
#print(c)
turn(K % c)

for i in range(H):
    print("".join(["." if s == 0 else "#" for s in S[i]]))
0