結果

問題 No.1434 Make Maze
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-19 22:57:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 83,696 KB
最終ジャッジ日時 2024-11-24 21:39:31
合計ジャッジ時間 5,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 99 ms
83,696 KB
testcase_03 AC 96 ms
83,380 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 32 ms
51,584 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 34 ms
51,584 KB
testcase_11 AC 33 ms
51,712 KB
testcase_12 AC 46 ms
63,360 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 46 ms
64,512 KB
testcase_15 AC 63 ms
77,500 KB
testcase_16 AC 51 ms
66,816 KB
testcase_17 AC 49 ms
64,256 KB
testcase_18 AC 53 ms
70,144 KB
testcase_19 AC 77 ms
80,256 KB
testcase_20 AC 34 ms
51,968 KB
testcase_21 AC 34 ms
51,968 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 33 ms
52,224 KB
testcase_24 AC 64 ms
77,312 KB
testcase_25 AC 83 ms
80,512 KB
testcase_26 AC 49 ms
65,280 KB
testcase_27 AC 70 ms
78,140 KB
testcase_28 AC 48 ms
65,280 KB
testcase_29 AC 43 ms
60,416 KB
testcase_30 AC 51 ms
70,400 KB
testcase_31 AC 55 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x=map(int,input().split())
r=((m-1)//2)*((n-1)//2)*2
if x>m*n-1-r or x<m+n-2 or (x-(m+n-2))%4!=0:
  print(-1)
  exit()
ans=[]
for i in range(n):
  ans.append([])
  for j in range(m):
    if i%2 and j%2:
      ans[-1].append('#')
    else:
      ans[-1].append('.')
stock=(x-(m+n-2))//4
count=0
for i in range(1,n,2):
  if count%2==0:
    if i==n-2 and stock:
      count2=0
      for j in range(1,m,2):
        if stock and count2%2==0:
          ans[i-1][j]='#'
          stock-=1
        else:
          ans[i+1][j]='#'
        count2+=1
    else:
      for j in range(1,m,2):
        if stock:
          ans[i][j-1]='#'
          stock-=1
        else:
          ans[i][j+1]='#'
  else:
    for j in range(m-2,0,-2):
      ans[i][j+1]='#'
  count+=1
  
for i in range(n):
  print(''.join(ans[i]))
0