結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,280 KB
testcase_01 AC 39 ms
53,256 KB
testcase_02 AC 110 ms
83,976 KB
testcase_03 AC 107 ms
83,712 KB
testcase_04 AC 38 ms
53,280 KB
testcase_05 AC 38 ms
53,116 KB
testcase_06 AC 38 ms
53,896 KB
testcase_07 AC 38 ms
53,208 KB
testcase_08 AC 38 ms
53,168 KB
testcase_09 AC 37 ms
52,128 KB
testcase_10 AC 38 ms
52,468 KB
testcase_11 AC 38 ms
52,464 KB
testcase_12 AC 49 ms
63,984 KB
testcase_13 AC 39 ms
52,948 KB
testcase_14 AC 52 ms
65,704 KB
testcase_15 AC 72 ms
77,548 KB
testcase_16 AC 55 ms
67,896 KB
testcase_17 AC 53 ms
65,160 KB
testcase_18 AC 58 ms
70,680 KB
testcase_19 AC 87 ms
80,748 KB
testcase_20 AC 38 ms
52,980 KB
testcase_21 AC 38 ms
52,696 KB
testcase_22 AC 38 ms
53,696 KB
testcase_23 AC 37 ms
52,456 KB
testcase_24 AC 72 ms
77,360 KB
testcase_25 AC 90 ms
80,444 KB
testcase_26 AC 54 ms
65,956 KB
testcase_27 AC 78 ms
78,576 KB
testcase_28 AC 52 ms
65,664 KB
testcase_29 AC 47 ms
61,892 KB
testcase_30 AC 57 ms
70,564 KB
testcase_31 AC 63 ms
70,952 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