結果

問題 No.2728 Grid Expansion
ユーザー 👑 tipstar0125tipstar0125
提出日時 2024-04-19 21:23:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 64,364 KB
最終ジャッジ日時 2024-04-19 21:23:34
合計ジャッジ時間 1,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,616 KB
testcase_01 AC 33 ms
53,152 KB
testcase_02 AC 36 ms
52,924 KB
testcase_03 AC 47 ms
64,364 KB
testcase_04 AC 35 ms
53,656 KB
testcase_05 AC 33 ms
52,476 KB
testcase_06 AC 34 ms
53,228 KB
testcase_07 AC 51 ms
64,312 KB
testcase_08 AC 34 ms
52,832 KB
testcase_09 AC 38 ms
53,020 KB
testcase_10 AC 34 ms
52,628 KB
testcase_11 AC 46 ms
63,664 KB
testcase_12 AC 46 ms
64,300 KB
testcase_13 AC 44 ms
62,432 KB
testcase_14 AC 43 ms
63,268 KB
testcase_15 AC 36 ms
53,224 KB
testcase_16 AC 34 ms
51,996 KB
testcase_17 AC 35 ms
52,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=list(map(int,input().split()))
A=[input() for _ in range(N)]

for row in A:
    for _ in range(K):
        for a in row:
            for _ in range(K):
                print(a,end="")
        print()
0