結果

問題 No.565 回転拡大
ユーザー rlangevinrlangevin
提出日時 2023-01-20 00:09:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 906 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 63,904 KB
最終ジャッジ日時 2024-06-22 16:50:48
合計ジャッジ時間 3,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,904 KB
testcase_01 AC 50 ms
63,104 KB
testcase_02 AC 49 ms
62,336 KB
testcase_03 AC 38 ms
52,756 KB
testcase_04 AC 49 ms
62,208 KB
testcase_05 AC 38 ms
52,520 KB
testcase_06 AC 50 ms
61,996 KB
testcase_07 AC 50 ms
61,276 KB
testcase_08 AC 48 ms
62,612 KB
testcase_09 AC 38 ms
53,040 KB
testcase_10 AC 39 ms
52,892 KB
testcase_11 AC 39 ms
52,464 KB
testcase_12 AC 48 ms
61,912 KB
testcase_13 AC 39 ms
52,532 KB
testcase_14 AC 40 ms
53,420 KB
testcase_15 AC 44 ms
59,028 KB
testcase_16 AC 39 ms
53,412 KB
testcase_17 AC 39 ms
52,424 KB
testcase_18 AC 40 ms
53,412 KB
testcase_19 AC 50 ms
62,796 KB
testcase_20 AC 39 ms
52,328 KB
testcase_21 AC 40 ms
53,956 KB
testcase_22 AC 50 ms
63,448 KB
testcase_23 AC 40 ms
53,820 KB
testcase_24 AC 49 ms
62,936 KB
testcase_25 AC 50 ms
62,504 KB
testcase_26 AC 40 ms
52,680 KB
testcase_27 AC 49 ms
62,128 KB
testcase_28 AC 49 ms
63,240 KB
testcase_29 AC 40 ms
53,656 KB
testcase_30 AC 37 ms
52,828 KB
testcase_31 AC 38 ms
52,324 KB
testcase_32 AC 38 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def rot90(A):
    return list(zip(*(A[::-1])))

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

for _ in range(R//90):
    G = rot90(G)
    
for i in range(len(G) * K):
    ans = []
    for j in range(len(G[i//K]) * K):
        ans.append(G[i//K][j//K])
    print(*ans, sep="")
0