結果

問題 No.565 回転拡大
ユーザー hedwig100hedwig100
提出日時 2020-05-20 10:39:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-10-01 23:29:35
合計ジャッジ時間 20,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
44,192 KB
testcase_01 AC 518 ms
43,808 KB
testcase_02 AC 517 ms
44,456 KB
testcase_03 AC 520 ms
44,188 KB
testcase_04 AC 524 ms
44,328 KB
testcase_05 AC 529 ms
44,188 KB
testcase_06 AC 528 ms
43,804 KB
testcase_07 AC 528 ms
44,196 KB
testcase_08 AC 527 ms
44,192 KB
testcase_09 AC 520 ms
43,936 KB
testcase_10 AC 517 ms
44,064 KB
testcase_11 AC 525 ms
44,324 KB
testcase_12 AC 520 ms
43,852 KB
testcase_13 AC 527 ms
44,316 KB
testcase_14 AC 527 ms
44,188 KB
testcase_15 AC 526 ms
43,804 KB
testcase_16 AC 528 ms
44,056 KB
testcase_17 AC 527 ms
43,936 KB
testcase_18 AC 527 ms
44,320 KB
testcase_19 AC 524 ms
44,416 KB
testcase_20 AC 530 ms
44,452 KB
testcase_21 AC 524 ms
44,064 KB
testcase_22 AC 539 ms
43,936 KB
testcase_23 AC 534 ms
44,452 KB
testcase_24 AC 525 ms
43,936 KB
testcase_25 AC 533 ms
44,316 KB
testcase_26 AC 529 ms
43,820 KB
testcase_27 AC 526 ms
43,936 KB
testcase_28 AC 526 ms
44,196 KB
testcase_29 AC 540 ms
43,936 KB
testcase_30 AC 520 ms
44,068 KB
testcase_31 AC 515 ms
44,288 KB
testcase_32 AC 515 ms
44,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
R,K = map(int,input().split())
H,W = map(int,input().split())
grid = np.array([list(input()) for _ in range(H)])
grid = np.repeat(grid,K,axis = 1)
grid = np.repeat(grid,K,axis = 0)
for _ in range(R//90):
    grid = grid[::-1].T
print('\n'.join(''.join(a) for a in grid))
0