結果

問題 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
コンパイル時間 200 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,464 KB
最終ジャッジ日時 2024-10-13 03:46:46
合計ジャッジ時間 19,341 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 483 ms
44,208 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 487 ms
44,324 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 494 ms
44,080 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 487 ms
44,196 KB
testcase_31 AC 481 ms
43,824 KB
testcase_32 AC 490 ms
44,200 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