結果

問題 No.2270 T0空間
ユーザー kakel-sankakel-san
提出日時 2023-07-05 18:18:09
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 935 bytes
コンパイル時間 2,809 ms
コンパイル使用メモリ 107,392 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-07-19 12:32:59
合計ジャッジ時間 13,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,552 KB
testcase_01 AC 24 ms
18,432 KB
testcase_02 AC 24 ms
18,176 KB
testcase_03 AC 25 ms
18,304 KB
testcase_04 AC 25 ms
18,560 KB
testcase_05 AC 24 ms
18,432 KB
testcase_06 AC 24 ms
18,176 KB
testcase_07 AC 24 ms
18,560 KB
testcase_08 AC 25 ms
18,432 KB
testcase_09 AC 24 ms
18,176 KB
testcase_10 AC 25 ms
18,304 KB
testcase_11 AC 234 ms
22,656 KB
testcase_12 AC 188 ms
21,120 KB
testcase_13 AC 881 ms
22,528 KB
testcase_14 AC 882 ms
22,400 KB
testcase_15 AC 885 ms
22,656 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var m = NN;
        var list = new bool[n * n];
        for (var i = 0; i < n; ++i) list[n * i + i] = true;
        for (var i = 0; i < m; ++i)
        {
            var s = ReadLine();
            for (var j = 0; j < s.Length; ++j) for (var k = j + 1; k < s.Length; ++k)
            {
                if (s[j] != s[k])
                {
                    list[j * n + k] = true;
                    list[k * n + j] = true;
                }
            }
        }
        WriteLine(list.All(f => f) ? "Yes" : "No");
    }
}
0