結果

問題 No.2728 Grid Expansion
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 21:22:14
言語 Julia
(1.10.2)
結果
TLE  
実行時間 -
コード長 390 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 386,304 KB
最終ジャッジ日時 2024-05-06 21:22:27
合計ジャッジ時間 11,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 294 ms
245,564 KB
testcase_02 AC 292 ms
245,688 KB
testcase_03 AC 288 ms
246,328 KB
testcase_04 AC 282 ms
245,568 KB
testcase_05 AC 282 ms
245,628 KB
testcase_06 AC 305 ms
245,436 KB
testcase_07 AC 291 ms
245,052 KB
testcase_08 AC 283 ms
245,816 KB
testcase_09 AC 295 ms
246,336 KB
testcase_10 AC 319 ms
246,716 KB
testcase_11 AC 304 ms
245,560 KB
testcase_12 AC 287 ms
245,688 KB
testcase_13 AC 294 ms
245,564 KB
testcase_14 AC 330 ms
245,816 KB
testcase_15 AC 301 ms
245,624 KB
testcase_16 AC 287 ms
245,560 KB
testcase_17 AC 292 ms
386,304 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