結果

問題 No.2871 Universal Serial Bus
ユーザー kakel-sankakel-san
提出日時 2024-10-09 23:45:27
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,419 bytes
コンパイル時間 8,390 ms
コンパイル使用メモリ 169,828 KB
実行使用メモリ 186,960 KB
最終ジャッジ日時 2024-10-09 23:45:42
合計ジャッジ時間 11,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,456 KB
testcase_01 AC 61 ms
30,456 KB
testcase_02 AC 60 ms
30,208 KB
testcase_03 WA -
testcase_04 AC 67 ms
30,320 KB
testcase_05 AC 62 ms
30,464 KB
testcase_06 AC 68 ms
30,464 KB
testcase_07 AC 60 ms
30,564 KB
testcase_08 WA -
testcase_09 AC 62 ms
30,336 KB
testcase_10 WA -
testcase_11 AC 62 ms
30,336 KB
testcase_12 AC 61 ms
30,200 KB
testcase_13 WA -
testcase_14 AC 61 ms
30,720 KB
testcase_15 AC 62 ms
30,464 KB
testcase_16 AC 62 ms
30,208 KB
testcase_17 AC 66 ms
30,456 KB
testcase_18 AC 62 ms
186,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (100 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 string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w) = (c[0], c[1]);
        var s = SList(h);
        var t = SList(h);
        var first = Connect(s, t);
        var second = Connect(Reverse(s), t);
        var fail = 1.0;
        var mul = 1.0;
        var ans = 0.0;
        for (var i = 1; i < 100; ++i)
        {
            if ((i % 2 == 1 && first) || (i % 2 == 0 && second))
            {
                ans += i * mul * (1 - fail);
                mul *= fail;
            }
            fail /= 2;
        }
        WriteLine(ans);
    }
    static string[] Reverse(string[] s)
    {
        var ans = new string[s.Length];
        for (var i = 0; i < s.Length; ++i) ans[i] = string.Concat(s[s.Length - i - 1].Reverse());
        return ans;
    }
    static bool Connect(string[] s, string[] t)
    {
        for (var i = 0; i < s.Length; ++i) for (var j = 0; j < s[0].Length; ++j) if (s[i][j] == t[i][j]) return false;
        return true;
    }
}
0