結果

問題 No.565 回転拡大
ユーザー kohei2019kohei2019
提出日時 2022-02-11 12:43:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-27 06:45:24
合計ジャッジ時間 2,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
65,408 KB
testcase_01 AC 51 ms
62,988 KB
testcase_02 AC 50 ms
62,208 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 53 ms
61,568 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 52 ms
63,104 KB
testcase_07 AC 49 ms
61,696 KB
testcase_08 AC 48 ms
61,952 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 50 ms
62,464 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 43 ms
58,368 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 40 ms
52,864 KB
testcase_19 AC 54 ms
64,384 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 40 ms
52,736 KB
testcase_22 AC 49 ms
61,824 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 50 ms
62,592 KB
testcase_25 AC 57 ms
64,000 KB
testcase_26 AC 42 ms
52,736 KB
testcase_27 AC 53 ms
61,568 KB
testcase_28 AC 54 ms
62,592 KB
testcase_29 AC 42 ms
52,608 KB
testcase_30 AC 40 ms
51,968 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


R,K = map(int,input().split())
H,W = map(int,input().split())
lsc = [list(input()) for i in range(H)]

ans = [[-1]*(W*K) for i in range(H*K)]

def rotate(ls):
    lsd = [[0]*len(ls) for i in range(len(ls[0]))]
    for i in range(len(ls[0])):
        for j in range(len(ls)):
            lsd[i][j] = ls[len(ls)-1-j][i]
    return lsd

for i in range(R//90):
    lsc = rotate(lsc)

ans = [[-1]*(len(lsc[0])*K) for i in range((len(lsc)*K))]

for i in range(len(lsc)):
    for j in range(len(lsc[0])):
        for k in range(K*i,K*i+K):
            for l in range(K*j,K*j+K):
                ans[k][l] = lsc[i][j]

for a in ans:
    print(*a,sep='')

    
0