結果

問題 No.2728 Grid Expansion
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 21:22:32
言語 Julia
(1.10.2)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 246,332 KB
最終ジャッジ日時 2024-11-29 07:30:10
合計ジャッジ時間 7,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
246,332 KB
testcase_01 AC 323 ms
246,332 KB
testcase_02 AC 323 ms
245,820 KB
testcase_03 AC 321 ms
245,056 KB
testcase_04 AC 328 ms
245,696 KB
testcase_05 AC 321 ms
245,656 KB
testcase_06 AC 326 ms
245,700 KB
testcase_07 AC 327 ms
246,208 KB
testcase_08 AC 324 ms
245,056 KB
testcase_09 AC 323 ms
245,820 KB
testcase_10 AC 323 ms
245,824 KB
testcase_11 AC 320 ms
245,816 KB
testcase_12 AC 323 ms
245,048 KB
testcase_13 AC 326 ms
245,560 KB
testcase_14 AC 324 ms
245,692 KB
testcase_15 AC 319 ms
245,824 KB
testcase_16 AC 324 ms
245,820 KB
testcase_17 AC 322 ms
246,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function solve()
    n, k = readline() |> split |> x->parse.(Int, x)
    a = String[]
    for _ in 1:n
        s = readline()
        push!(a, s)
    end
    for i in 1:n
        for _ in 1:k
            li = a[i]
            for j in 1:n
                for _ in 1:k
                    print(li[j])
                end
            end
            println()
        end
    end
end
solve()
0