結果

問題 No.565 回転拡大
ユーザー NoNo
提出日時 2018-01-21 15:10:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,588 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 111,104 KB
実行使用メモリ 32,564 KB
最終ジャッジ日時 2024-06-07 15:09:02
合計ジャッジ時間 5,286 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,316 KB
testcase_01 AC 49 ms
32,352 KB
testcase_02 AC 46 ms
32,564 KB
testcase_03 AC 43 ms
32,224 KB
testcase_04 AC 46 ms
30,180 KB
testcase_05 AC 44 ms
29,928 KB
testcase_06 AC 46 ms
30,384 KB
testcase_07 AC 45 ms
28,472 KB
testcase_08 AC 48 ms
30,308 KB
testcase_09 AC 44 ms
32,480 KB
testcase_10 AC 43 ms
30,184 KB
testcase_11 AC 44 ms
32,328 KB
testcase_12 AC 47 ms
30,568 KB
testcase_13 AC 43 ms
30,312 KB
testcase_14 AC 44 ms
32,436 KB
testcase_15 AC 46 ms
32,344 KB
testcase_16 AC 44 ms
30,308 KB
testcase_17 AC 44 ms
30,568 KB
testcase_18 AC 45 ms
32,440 KB
testcase_19 AC 51 ms
30,396 KB
testcase_20 AC 42 ms
28,468 KB
testcase_21 AC 44 ms
30,184 KB
testcase_22 AC 45 ms
30,312 KB
testcase_23 AC 43 ms
30,396 KB
testcase_24 AC 49 ms
30,696 KB
testcase_25 AC 48 ms
30,380 KB
testcase_26 AC 44 ms
30,636 KB
testcase_27 AC 46 ms
32,352 KB
testcase_28 AC 47 ms
30,396 KB
testcase_29 AC 44 ms
30,396 KB
testcase_30 AC 44 ms
32,356 KB
testcase_31 AC 43 ms
32,296 KB
testcase_32 AC 43 ms
30,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Drawing;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] ss = Console.ReadLine().Split();
            int r = int.Parse(ss[0]) / 90;
            int k = int.Parse(ss[1]);
            ss = Console.ReadLine().Split();
            int h = int.Parse(ss[0]);
            int w = int.Parse(ss[1]);

            var b = new Bitmap(w, h);
            for (int i = 0; i < h; i++)
            {
                string s = Console.ReadLine();
                for (int j = 0; j < w; j++)
                {
                    if (s[j] == '#') b.SetPixel(j, i, Color.Black);
                    else b.SetPixel(j, i, Color.White);
                }
            }

            for (int i = 0; i < r; i++)
            {
                b.RotateFlip(RotateFlipType.Rotate90FlipNone);
            }

            for (int i = 0; i < b.Height * k; i++)
            {
                for (int j = 0; j < b.Width; j++)
                {
                    if (b.GetPixel(j, i / k).Name == "ff000000")
                    {
                        for (int n = 0; n < k; n++)
                        {
                            Console.Write("#");
                        }
                    }
                    else
                    {
                        for (int n = 0; n < k; n++)
                        {
                            Console.Write(".");
                        }
                    }
                }
                Console.Write(Environment.NewLine);
            }
        }
    }
}
0