結果

問題 No.2728 Grid Expansion
ユーザー loop0919loop0919
提出日時 2024-04-19 21:22:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 64,440 KB
最終ジャッジ日時 2024-04-19 21:22:28
合計ジャッジ時間 1,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,468 KB
testcase_01 AC 32 ms
52,204 KB
testcase_02 AC 42 ms
52,952 KB
testcase_03 AC 47 ms
62,904 KB
testcase_04 AC 33 ms
53,192 KB
testcase_05 AC 33 ms
53,036 KB
testcase_06 AC 34 ms
52,332 KB
testcase_07 AC 45 ms
62,380 KB
testcase_08 AC 35 ms
53,380 KB
testcase_09 AC 33 ms
53,296 KB
testcase_10 AC 34 ms
53,476 KB
testcase_11 AC 46 ms
64,440 KB
testcase_12 AC 44 ms
63,636 KB
testcase_13 AC 43 ms
63,436 KB
testcase_14 AC 42 ms
62,700 KB
testcase_15 AC 35 ms
52,308 KB
testcase_16 AC 33 ms
52,224 KB
testcase_17 AC 34 ms
52,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(N * K):
    i_ = i // K
    for j in range(N * K):
        j_ = j // K
        print(A[i_][j_], end='')
    print()
0