結果

問題 No.565 回転拡大
ユーザー Pump0129Pump0129
提出日時 2018-03-29 17:55:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,540 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 10,852 KB
実行使用メモリ 8,788 KB
最終ジャッジ日時 2023-09-08 06:35:16
合計ジャッジ時間 3,172 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 20 ms
8,600 KB
testcase_02 AC 20 ms
8,616 KB
testcase_03 AC 19 ms
8,536 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 20 ms
8,672 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 21 ms
8,616 KB
testcase_13 WA -
testcase_14 AC 19 ms
8,612 KB
testcase_15 AC 20 ms
8,644 KB
testcase_16 AC 19 ms
8,580 KB
testcase_17 AC 19 ms
8,500 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 19 ms
8,528 KB
testcase_24 AC 21 ms
8,672 KB
testcase_25 AC 21 ms
8,628 KB
testcase_26 AC 19 ms
8,668 KB
testcase_27 AC 19 ms
8,696 KB
testcase_28 WA -
testcase_29 AC 19 ms
8,520 KB
testcase_30 AC 19 ms
8,532 KB
testcase_31 AC 19 ms
8,512 KB
testcase_32 AC 19 ms
8,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

data = input().split(" ")
rotate = int(data[0])
mag = int(data[1])

data = input().split(" ")
height = int(data[0])
width = int(data[1])

raw_board = [[False for j in range(width)] for i in range(height)]

for j in range(height):
    line = input()
    for i in range(width):
        if line[i] == "#":
            raw_board[j][i] = True

r_board = [[]]
if rotate == 0:
    r_board = copy.deepcopy(raw_board)
elif rotate == 90:
    r_board = [[False for j in range(height)] for i in range(width)]
    for j in range(height):
        for i in range(width):
            r_board[i][j] = raw_board[j][i]
elif rotate == 180:
    r_board = [[False for j in range(width)] for i in range(height)]
    for j in range(height):
        for i in range(width):
            r_board[height - j - 1][width - i - 1] = raw_board[j][i]
elif rotate == 270:
    ra_board = [[False for j in range(height)] for i in range(width)]
    r_board = [[False for j in range(height)] for i in range(width)]
    for j in range(height):
        for i in range(width):
            ra_board[i][j] = raw_board[j][i]
    cnt = 0
    for j in range(height):
        for i in range(width):
            r_board[i][j] = ra_board[i][j]

for j in range(len(r_board)):
    for mj in range(mag):
        for i in range(len(r_board[0])):
            for mi in range(mag):
                if r_board[j][i]:
                    print("#", end="")
                else:
                    print(".", end="")
        print()
0