結果

問題 No.565 回転拡大
ユーザー ThetaTheta
提出日時 2022-10-18 19:34:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,356 KB
最終ジャッジ日時 2024-06-29 02:30:24
合計ジャッジ時間 20,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,220 KB
testcase_01 AC 525 ms
44,088 KB
testcase_02 AC 516 ms
44,092 KB
testcase_03 AC 514 ms
44,344 KB
testcase_04 AC 515 ms
43,840 KB
testcase_05 AC 517 ms
44,220 KB
testcase_06 AC 519 ms
44,348 KB
testcase_07 AC 515 ms
44,348 KB
testcase_08 AC 512 ms
44,220 KB
testcase_09 AC 511 ms
44,220 KB
testcase_10 AC 522 ms
43,832 KB
testcase_11 AC 522 ms
43,976 KB
testcase_12 AC 521 ms
44,216 KB
testcase_13 AC 503 ms
43,968 KB
testcase_14 AC 501 ms
43,848 KB
testcase_15 AC 511 ms
44,224 KB
testcase_16 AC 522 ms
43,972 KB
testcase_17 AC 512 ms
43,836 KB
testcase_18 AC 519 ms
44,224 KB
testcase_19 AC 515 ms
43,844 KB
testcase_20 AC 523 ms
44,356 KB
testcase_21 AC 512 ms
44,348 KB
testcase_22 AC 505 ms
44,216 KB
testcase_23 AC 519 ms
44,092 KB
testcase_24 AC 512 ms
44,228 KB
testcase_25 AC 522 ms
44,100 KB
testcase_26 AC 521 ms
43,832 KB
testcase_27 AC 518 ms
43,828 KB
testcase_28 AC 507 ms
44,224 KB
testcase_29 AC 520 ms
44,224 KB
testcase_30 AC 512 ms
44,212 KB
testcase_31 AC 506 ms
43,844 KB
testcase_32 AC 500 ms
44,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def convert_str_to_binary(letter: str) -> int:
    if letter == ".":
        return 0
    if letter == "#":
        return 1
    raise ValueError


def convert_bin_to_str(bin: int) -> str:
    match bin:
        case 0:
            return "."
        case 1:
            return "#"
        case _:
            raise ValueError


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

    C = np.array([list(map(convert_str_to_binary, list(input())))
                 for _ in range(H)])

    C = np.rot90(C, k=-R//90)

    new_C = []
    for row in C:
        new_row = []
        for elm in row:
            new_row.extend([elm]*K)
        new_C.extend([new_row]*K)

    for row in new_C:
        print("".join(map(convert_bin_to_str, row)))


if __name__ == "__main__":
    main()
0