結果

問題 No.565 回転拡大
ユーザー GrayCoder
提出日時 2017-09-09 03:15:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-07 12:45:30
合計ジャッジ時間 2,157 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 2 WA * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    R, K = map(int, input().split())
    H, W = map(int, input().split())
    C = tuple(input() for _ in range(H))

    for i in range(W):
        n = 0
        while n < K:
            for j in range(H):
                print(C[j][i] * K, end='')
            print()
            n += 1

main()
0