結果

問題 No.2692 How Many Times Reached?
ユーザー kakel-sankakel-san
提出日時 2024-03-22 21:38:08
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,829 bytes
コンパイル時間 6,572 ms
コンパイル使用メモリ 165,744 KB
実行使用メモリ 184,088 KB
最終ジャッジ日時 2024-09-30 11:05:56
合計ジャッジ時間 9,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
29,440 KB
testcase_01 AC 46 ms
29,824 KB
testcase_02 AC 47 ms
29,824 KB
testcase_03 AC 46 ms
29,824 KB
testcase_04 AC 47 ms
29,824 KB
testcase_05 AC 47 ms
29,696 KB
testcase_06 AC 47 ms
29,824 KB
testcase_07 AC 48 ms
29,824 KB
testcase_08 AC 47 ms
29,796 KB
testcase_09 AC 47 ms
29,824 KB
testcase_10 AC 46 ms
29,696 KB
testcase_11 AC 46 ms
29,952 KB
testcase_12 AC 45 ms
29,568 KB
testcase_13 AC 46 ms
29,824 KB
testcase_14 AC 48 ms
29,568 KB
testcase_15 AC 47 ms
29,696 KB
testcase_16 AC 48 ms
29,696 KB
testcase_17 AC 47 ms
29,824 KB
testcase_18 AC 47 ms
29,824 KB
testcase_19 AC 47 ms
29,440 KB
testcase_20 AC 46 ms
29,696 KB
testcase_21 AC 46 ms
29,440 KB
testcase_22 AC 46 ms
29,824 KB
testcase_23 AC 48 ms
29,668 KB
testcase_24 AC 47 ms
29,824 KB
testcase_25 AC 47 ms
29,548 KB
testcase_26 AC 47 ms
29,928 KB
testcase_27 AC 47 ms
29,440 KB
testcase_28 AC 46 ms
29,824 KB
testcase_29 AC 46 ms
29,824 KB
testcase_30 AC 46 ms
29,696 KB
testcase_31 AC 50 ms
29,440 KB
testcase_32 AC 50 ms
29,696 KB
testcase_33 AC 49 ms
29,568 KB
testcase_34 AC 50 ms
29,796 KB
testcase_35 AC 51 ms
29,824 KB
testcase_36 AC 50 ms
29,696 KB
testcase_37 AC 61 ms
30,976 KB
testcase_38 AC 48 ms
29,696 KB
testcase_39 AC 47 ms
29,568 KB
testcase_40 AC 47 ms
29,824 KB
testcase_41 AC 45 ms
29,696 KB
testcase_42 AC 47 ms
29,952 KB
testcase_43 AC 48 ms
29,696 KB
testcase_44 AC 57 ms
31,104 KB
testcase_45 AC 46 ms
29,548 KB
testcase_46 AC 48 ms
184,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (81 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    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 map = SList(n);
        var ans = 0;
        for (var i = 0; i < n; ++i)
        {
            var a = 0;
            var d = 0;
            for (var j = 0; j < n; ++j)
            {
                if (map[i][j] == 'A') ++a;
                if (map[i][j] == '.') ++d;
            }
            if (a + 1 == n && d == 1) ++ans;
        }
        for (var j = 0; j < n; ++j)
        {
            var a = 0;
            var d = 0;
            for (var i = 0; i < n; ++i)
            {
                if (map[i][j] == 'A') ++a;
                if (map[i][j] == '.') ++d;
            }
            if (a + 1 == n && d == 1) ++ans;
        }
        {
            var a = 0;
            var d = 0;
            for (var i = 0; i < n; ++i)
            {
                if (map[i][i] == 'A') ++a;
                if (map[i][i] == '.') ++d;
            }
            if (a + 1 == n && d == 1) ++ans;
        }
        {
            var a = 0;
            var d = 0;
            for (var i = 0; i < n; ++i)
            {
                if (map[i][n - i - 1] == 'A') ++a;
                if (map[i][n - i - 1] == '.') ++d;
            }
            if (a + 1 == n && d == 1) ++ans;
        }
        WriteLine(ans);
    }
}
0