結果

問題 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
コンパイル時間 84 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-25 23:50:11
合計ジャッジ時間 2,387 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 34 ms
11,136 KB
testcase_02 AC 34 ms
11,264 KB
testcase_03 AC 33 ms
11,136 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 34 ms
11,136 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 30 ms
11,136 KB
testcase_13 WA -
testcase_14 AC 32 ms
11,264 KB
testcase_15 AC 32 ms
11,264 KB
testcase_16 AC 30 ms
11,136 KB
testcase_17 AC 30 ms
11,136 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 31 ms
11,136 KB
testcase_24 AC 33 ms
11,264 KB
testcase_25 AC 31 ms
11,136 KB
testcase_26 AC 30 ms
11,264 KB
testcase_27 AC 31 ms
11,136 KB
testcase_28 WA -
testcase_29 AC 31 ms
11,136 KB
testcase_30 AC 30 ms
11,136 KB
testcase_31 AC 31 ms
11,136 KB
testcase_32 AC 30 ms
11,136 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