結果

問題 No.565 回転拡大
ユーザー yamasaKit_yamasaKit_
提出日時 2020-05-27 20:27:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,464 KB
最終ジャッジ日時 2024-04-21 05:16:59
合計ジャッジ時間 20,919 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 525 ms
44,076 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 524 ms
43,824 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 526 ms
43,820 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 518 ms
43,692 KB
testcase_31 AC 528 ms
43,816 KB
testcase_32 AC 524 ms
44,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

R, K = map(int, input().split())
H, W = map(int, input().split())

C = []
for _ in range(H):
    tmp = list(input())
    C.append(tmp)
C = np.array(C)
for _ in range(R // 90 - 1):
    C = np.rot90(C)

for h in range(C.shape[1]):
    for _ in range(K):
        for w in range(C.shape[0]):
            for __ in range(K):
                print(C[w, h], end='', sep='')
        print('')
0