結果

問題 No.455 冬の大三角
ユーザー qazqaz
提出日時 2017-05-20 13:03:29
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,018 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 108,032 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-09-19 00:27:04
合計ジャッジ時間 5,024 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,200 KB
testcase_01 AC 31 ms
19,328 KB
testcase_02 AC 32 ms
19,200 KB
testcase_03 AC 30 ms
19,328 KB
testcase_04 WA -
testcase_05 AC 31 ms
19,328 KB
testcase_06 WA -
testcase_07 AC 31 ms
19,200 KB
testcase_08 AC 53 ms
21,120 KB
testcase_09 AC 30 ms
19,072 KB
testcase_10 WA -
testcase_11 AC 31 ms
19,200 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 30 ms
19,072 KB
testcase_15 AC 30 ms
19,328 KB
testcase_16 AC 30 ms
19,072 KB
testcase_17 AC 30 ms
19,072 KB
testcase_18 AC 30 ms
18,944 KB
testcase_19 WA -
testcase_20 AC 30 ms
18,944 KB
testcase_21 AC 30 ms
19,200 KB
testcase_22 WA -
testcase_23 AC 31 ms
19,072 KB
testcase_24 WA -
testcase_25 AC 31 ms
19,328 KB
testcase_26 AC 30 ms
19,072 KB
testcase_27 AC 30 ms
19,072 KB
testcase_28 AC 30 ms
19,072 KB
testcase_29 AC 47 ms
20,224 KB
testcase_30 AC 43 ms
19,840 KB
testcase_31 AC 42 ms
19,584 KB
testcase_32 AC 36 ms
19,456 KB
testcase_33 AC 50 ms
20,608 KB
testcase_34 AC 32 ms
19,328 KB
testcase_35 AC 42 ms
20,096 KB
testcase_36 AC 40 ms
19,968 KB
testcase_37 AC 35 ms
19,328 KB
testcase_38 AC 36 ms
19,584 KB
testcase_39 AC 48 ms
20,480 KB
testcase_40 AC 41 ms
19,840 KB
testcase_41 AC 40 ms
19,712 KB
testcase_42 AC 37 ms
19,840 KB
testcase_43 AC 34 ms
19,456 KB
testcase_44 AC 34 ms
19,584 KB
testcase_45 AC 44 ms
20,352 KB
testcase_46 AC 41 ms
19,968 KB
testcase_47 AC 38 ms
19,712 KB
testcase_48 AC 36 ms
19,584 KB
testcase_49 AC 31 ms
19,328 KB
testcase_50 AC 31 ms
19,200 KB
testcase_51 AC 32 ms
19,072 KB
testcase_52 AC 31 ms
18,944 KB
testcase_53 AC 32 ms
19,456 KB
testcase_54 AC 32 ms
19,328 KB
testcase_55 AC 32 ms
19,456 KB
testcase_56 AC 31 ms
19,328 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.Collections.Generic;
using System.Linq;

public class Program
{
    public static void Main() {
        var data = Console.ReadLine().Split(' ');
        int H = int.Parse(data[0]);
        int W = int.Parse(data[1]);

        var maps = new Maps();
        for (int i = 0; i < H; i++) {
            int w = Console.ReadLine().IndexOf('*');
            if (w >= 0) {
                maps.Map.Add(new Map { H = i, W = w });
            }
        }

        var map = maps.Search(H, W);
        if (map != null) {
            maps.Map.Add(map);
        }

        for (int i = 0; i < H; i++) {
            for (int j = 0; j < W; j++) {
                if (maps.Map.Any(x => x.H == i && x.W == j)) {
                    Console.Write("*");
                }
                else {
                    Console.Write("-");
                }
            }
            Console.WriteLine();
        }
    }
}

public class Maps
{
    public List<Map> Map { get; set; }

    public Maps() {
        Map = new List<Map>();
    }

    public Map Search(int H, int W) {
        for (int i = 0; i < H; i++) {
            for (int j = 0; j < W; j++) {
                if (IsConfirm(i, j)) {
                    return new Map { H = i, W = j };
                }
            }
        }
        return null;
    }

    public bool IsConfirm(int h, int w) {
        var slope = new List<string>();
        foreach (var item in Map) {
            slope.Add(GetSlope(item, h, w));
        }

        return slope.Count() == slope.Distinct().Count() && !slope.Any(x => x == "");
    }

    public string GetSlope(Map map, int hh, int ww) {
        decimal h = map.H - hh;
        decimal w = map.W - ww;

        if(h == 0 && w == 0) {
            return "";
        }

        if (w == 0) {
            return "∞";
        }
        if (h == 0) {
            return "0";
        }
        return (h / w).ToString();
    }
}

public class Map
{
    public int H { get; set; }
    public int W { get; set; }
}
0