結果

問題 No.2432 Flip and Move
ユーザー mkawa2mkawa2
提出日時 2023-08-18 23:24:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,157 ms / 2,000 ms
コード長 1,823 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 252,416 KB
最終ジャッジ日時 2024-05-06 06:09:26
合計ジャッジ時間 22,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 460 ms
239,788 KB
testcase_03 AC 709 ms
252,416 KB
testcase_04 AC 342 ms
182,844 KB
testcase_05 AC 340 ms
182,800 KB
testcase_06 AC 296 ms
158,124 KB
testcase_07 AC 487 ms
190,644 KB
testcase_08 AC 528 ms
200,232 KB
testcase_09 AC 671 ms
245,760 KB
testcase_10 AC 320 ms
181,552 KB
testcase_11 AC 367 ms
193,376 KB
testcase_12 AC 291 ms
183,252 KB
testcase_13 AC 380 ms
192,424 KB
testcase_14 AC 227 ms
116,116 KB
testcase_15 AC 639 ms
221,348 KB
testcase_16 AC 474 ms
119,712 KB
testcase_17 AC 1,098 ms
169,044 KB
testcase_18 AC 265 ms
103,772 KB
testcase_19 AC 802 ms
148,800 KB
testcase_20 AC 1,136 ms
179,416 KB
testcase_21 AC 867 ms
147,436 KB
testcase_22 AC 746 ms
158,868 KB
testcase_23 AC 211 ms
97,308 KB
testcase_24 AC 1,157 ms
165,568 KB
testcase_25 AC 762 ms
142,132 KB
testcase_26 AC 625 ms
158,100 KB
testcase_27 AC 101 ms
82,920 KB
testcase_28 AC 99 ms
78,788 KB
testcase_29 AC 817 ms
145,164 KB
testcase_30 AC 1,114 ms
172,536 KB
testcase_31 AC 609 ms
153,720 KB
testcase_32 AC 119 ms
84,352 KB
testcase_33 AC 1,089 ms
170,644 KB
testcase_34 AC 558 ms
125,784 KB
testcase_35 AC 447 ms
143,588 KB
testcase_36 AC 36 ms
52,480 KB
testcase_37 AC 37 ms
52,224 KB
testcase_38 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(1000005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

h,w=LI()
k=II()

tt=[[[-1]*4 for _ in range(w)] for _ in range(h)]
tt[0][0][3]=0
i,j,dir=0,0,3
last=-1
for t in range(k-1):
    di=1 if dir&1 else -1
    dj=1 if dir&2 else -1
    if 0<=i+di<h:
        i+=di
    else:
        dir^=1
    if 0<=j+dj<w:
        j+=dj
    else:
        dir^=2
    if tt[i][j][dir]==-1:
        tt[i][j][dir]=t+1
    else:
        last=t+1
        break
# p2D(tt)
# pDB(i,j,dir,last)

if last==-1:
    for i in range(h):
        s=[]
        for j in range(w):
            if tt[i][j].count(-1)&1:
                s.append("#")
            else:
                s.append(".")
        print(*s,sep="")
else:
    p,r=divmod(k,last)
    # pDB(p,r)
    p&=1
    for i in range(h):
        s=[]
        for j in range(w):
            c=0
            for dir in range(4):
                if tt[i][j][dir]==-1:continue
                if tt[i][j][dir]<r:
                    c^=p^1
                else:
                    c^=p
            if c:
                s.append("#")
            else:
                s.append(".")
        print(*s,sep="")






0