結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
245,624 KB
testcase_01 AC 304 ms
245,692 KB
testcase_02 AC 283 ms
245,048 KB
testcase_03 AC 289 ms
245,052 KB
testcase_04 AC 282 ms
245,564 KB
testcase_05 AC 280 ms
245,564 KB
testcase_06 AC 304 ms
245,824 KB
testcase_07 AC 282 ms
245,824 KB
testcase_08 AC 284 ms
245,564 KB
testcase_09 AC 293 ms
245,820 KB
testcase_10 AC 332 ms
245,568 KB
testcase_11 AC 296 ms
245,820 KB
testcase_12 AC 280 ms
245,688 KB
testcase_13 AC 284 ms
245,692 KB
testcase_14 AC 307 ms
245,564 KB
testcase_15 AC 285 ms
245,820 KB
testcase_16 AC 290 ms
245,564 KB
testcase_17 AC 306 ms
245,824 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