結果
問題 | No.2871 Universal Serial Bus |
ユーザー | kakel-san |
提出日時 | 2024-10-09 23:57:24 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 1,435 bytes |
コンパイル時間 | 10,529 ms |
コンパイル使用メモリ | 168,152 KB |
実行使用メモリ | 186,824 KB |
最終ジャッジ日時 | 2024-10-09 23:57:37 |
合計ジャッジ時間 | 10,162 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
30,300 KB |
testcase_01 | AC | 65 ms
30,208 KB |
testcase_02 | AC | 64 ms
30,208 KB |
testcase_03 | AC | 63 ms
30,592 KB |
testcase_04 | AC | 65 ms
30,464 KB |
testcase_05 | AC | 66 ms
30,080 KB |
testcase_06 | AC | 63 ms
30,592 KB |
testcase_07 | AC | 64 ms
30,592 KB |
testcase_08 | AC | 65 ms
30,592 KB |
testcase_09 | AC | 64 ms
30,592 KB |
testcase_10 | AC | 65 ms
30,592 KB |
testcase_11 | AC | 64 ms
30,592 KB |
testcase_12 | AC | 63 ms
30,208 KB |
testcase_13 | AC | 64 ms
30,464 KB |
testcase_14 | AC | 64 ms
30,208 KB |
testcase_15 | AC | 64 ms
30,464 KB |
testcase_16 | AC | 66 ms
30,208 KB |
testcase_17 | AC | 66 ms
30,300 KB |
testcase_18 | AC | 65 ms
186,824 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (98 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/
ソースコード
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 == 0 ? -1 : 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; } }