結果

問題 No.2432 Flip and Move
ユーザー mkawa2mkawa2
提出日時 2023-08-18 23:24:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,068 ms / 2,000 ms
コード長 1,823 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 81,768 KB
実行使用メモリ 251,904 KB
最終ジャッジ日時 2024-11-28 10:36:34
合計ジャッジ時間 20,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 429 ms
239,528 KB
testcase_03 AC 639 ms
251,904 KB
testcase_04 AC 318 ms
182,408 KB
testcase_05 AC 305 ms
182,808 KB
testcase_06 AC 273 ms
157,612 KB
testcase_07 AC 498 ms
189,932 KB
testcase_08 AC 469 ms
200,268 KB
testcase_09 AC 641 ms
246,024 KB
testcase_10 AC 296 ms
181,040 KB
testcase_11 AC 330 ms
193,636 KB
testcase_12 AC 268 ms
182,608 KB
testcase_13 AC 356 ms
191,944 KB
testcase_14 AC 213 ms
116,168 KB
testcase_15 AC 559 ms
221,372 KB
testcase_16 AC 401 ms
119,068 KB
testcase_17 AC 999 ms
168,904 KB
testcase_18 AC 250 ms
103,920 KB
testcase_19 AC 717 ms
148,416 KB
testcase_20 AC 1,068 ms
178,844 KB
testcase_21 AC 789 ms
146,796 KB
testcase_22 AC 675 ms
159,000 KB
testcase_23 AC 195 ms
97,048 KB
testcase_24 AC 1,021 ms
165,320 KB
testcase_25 AC 676 ms
142,004 KB
testcase_26 AC 574 ms
157,576 KB
testcase_27 AC 92 ms
82,400 KB
testcase_28 AC 91 ms
78,716 KB
testcase_29 AC 716 ms
144,796 KB
testcase_30 AC 1,012 ms
172,160 KB
testcase_31 AC 546 ms
152,952 KB
testcase_32 AC 109 ms
83,732 KB
testcase_33 AC 952 ms
170,136 KB
testcase_34 AC 466 ms
125,792 KB
testcase_35 AC 398 ms
143,204 KB
testcase_36 AC 34 ms
54,276 KB
testcase_37 AC 34 ms
54,172 KB
testcase_38 AC 35 ms
52,764 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