結果
問題 | No.1384 Bishop and Rook |
ユーザー | kakel-san |
提出日時 | 2024-07-24 23:56:37 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,285 bytes |
コンパイル時間 | 16,286 ms |
コンパイル使用メモリ | 166,792 KB |
実行使用メモリ | 188,132 KB |
最終ジャッジ日時 | 2024-07-24 23:57:14 |
合計ジャッジ時間 | 27,470 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
30,592 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (232 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 int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray(); static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray(); public static void Main() { Solve(); } static void Solve() { var t = NN; var ans = new string[t]; for (var u = 0; u < t; ++u) { var c = NList; ans[u] = Bis(c[0], c[1]); } WriteLine(string.Join("\n", ans)); } static string Bis(int h, int w) { if (h % 2 == 1 || w % 2 == 1) return "-1"; var t = new System.Text.StringBuilder(); var ans = new List<string>(); ans.Add((h * w - 1).ToString()); var x = 0; var y = 1; var mx4 = new int[] { 1, 1, -1, 1 }; var my4 = new int[] { 0, 1, 0, -1 }; if (w == 2) { for (var i = 0; i < h * w; ++i) { x += mx4[i % 4]; y += my4[i % 4]; ans.Add($"{x} {y}"); } return string.Join("\n", ans); } var mx1 = new int[] { 1, 1, 0, -1 }; var my1 = new int[] { 0, 1, -1, 1 }; var mx2 = new int[] { 0, 1, 0, -1 }; var my2 = new int[] { 1, 1, -1, 1 }; var mx3 = new int[] { 0, 1, -1, 1 }; var my3 = new int[] { 1, 1, 0, -1 }; var mx5 = new int[] { 0, -1, 0, 1 }; var my5 = new int[] { -1, -1, 1, -1 }; for (var i = 0; i < h; i += 2) { if (i % 4 == 0) { for (var j = 0; j < w; j += 2) { for (var p = 0; p < 4; ++p) { if (j == 0) { x += mx1[p]; y += my1[p]; } else if (j + 2 < w) { x += mx2[p]; y += my2[p]; } else { x += mx3[p]; y += my3[p]; } ans.Add($"{x} {y}"); } } } else { for (var j = w - 2; j >= 0; j -= 2) { for (var p = 0; p < 4; ++p) { if (j + 2 == w) { x += mx4[p]; y += my4[p]; } else { x += mx5[p]; y += my5[p]; } ans.Add($"{x} {y}"); } } } } return string.Join("\n", ans); } }