結果

問題 No.565 回転拡大
ユーザー Pump0129Pump0129
提出日時 2018-03-29 18:05:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 1,552 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 10,856 KB
実行使用メモリ 8,696 KB
最終ジャッジ日時 2023-09-08 06:35:19
合計ジャッジ時間 2,033 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
8,540 KB
testcase_01 AC 21 ms
8,500 KB
testcase_02 AC 20 ms
8,516 KB
testcase_03 AC 19 ms
8,628 KB
testcase_04 AC 20 ms
8,500 KB
testcase_05 AC 19 ms
8,524 KB
testcase_06 AC 20 ms
8,504 KB
testcase_07 AC 20 ms
8,696 KB
testcase_08 AC 20 ms
8,568 KB
testcase_09 AC 19 ms
8,636 KB
testcase_10 AC 19 ms
8,616 KB
testcase_11 AC 19 ms
8,492 KB
testcase_12 AC 20 ms
8,500 KB
testcase_13 AC 20 ms
8,572 KB
testcase_14 AC 18 ms
8,536 KB
testcase_15 AC 20 ms
8,464 KB
testcase_16 AC 20 ms
8,608 KB
testcase_17 AC 20 ms
8,648 KB
testcase_18 AC 20 ms
8,612 KB
testcase_19 AC 21 ms
8,692 KB
testcase_20 AC 18 ms
8,532 KB
testcase_21 AC 19 ms
8,648 KB
testcase_22 AC 20 ms
8,632 KB
testcase_23 AC 19 ms
8,600 KB
testcase_24 AC 21 ms
8,640 KB
testcase_25 AC 20 ms
8,556 KB
testcase_26 AC 20 ms
8,568 KB
testcase_27 AC 20 ms
8,608 KB
testcase_28 AC 20 ms
8,676 KB
testcase_29 AC 19 ms
8,472 KB
testcase_30 AC 19 ms
8,508 KB
testcase_31 AC 19 ms
8,620 KB
testcase_32 AC 19 ms
8,688 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][height - j - 1] = 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]
    for j in range(width):
        for i in range(height):
            r_board[j][i] = ra_board[width - j - 1][i]

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