結果

問題 No.2728 Grid Expansion
ユーザー nikoro256nikoro256
提出日時 2024-04-19 21:25:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 59,792 KB
最終ジャッジ日時 2024-10-11 13:54:47
合計ジャッジ時間 1,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,444 KB
testcase_01 AC 39 ms
52,264 KB
testcase_02 AC 39 ms
53,264 KB
testcase_03 AC 43 ms
58,244 KB
testcase_04 AC 39 ms
52,440 KB
testcase_05 AC 37 ms
52,316 KB
testcase_06 AC 37 ms
53,232 KB
testcase_07 AC 41 ms
59,536 KB
testcase_08 AC 37 ms
52,876 KB
testcase_09 AC 38 ms
53,216 KB
testcase_10 AC 37 ms
52,880 KB
testcase_11 AC 42 ms
59,792 KB
testcase_12 AC 43 ms
58,800 KB
testcase_13 AC 44 ms
59,192 KB
testcase_14 AC 43 ms
59,680 KB
testcase_15 AC 37 ms
51,824 KB
testcase_16 AC 38 ms
52,284 KB
testcase_17 AC 39 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=[]
for i in range(N):
    A.append(input())
ans=[[] for _ in range(N*K)]
for i in range(N*K):
    for j in range(N*K):
        ans[i].append(A[i//K][j//K])
for a in ans:
    print(''.join(a))
0