結果
問題 | No.2212 One XOR Matrix |
ユーザー | kakel-san |
提出日時 | 2023-10-17 23:40:08 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 169 ms / 2,000 ms |
コード長 | 1,443 bytes |
コンパイル時間 | 15,808 ms |
コンパイル使用メモリ | 168,408 KB |
実行使用メモリ | 253,096 KB |
最終ジャッジ日時 | 2024-09-17 20:44:56 |
合計ジャッジ時間 | 18,720 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
30,976 KB |
testcase_01 | AC | 46 ms
29,312 KB |
testcase_02 | AC | 58 ms
30,848 KB |
testcase_03 | AC | 54 ms
30,976 KB |
testcase_04 | AC | 54 ms
31,104 KB |
testcase_05 | AC | 52 ms
30,976 KB |
testcase_06 | AC | 54 ms
31,872 KB |
testcase_07 | AC | 62 ms
35,072 KB |
testcase_08 | AC | 87 ms
47,360 KB |
testcase_09 | AC | 169 ms
253,096 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (87 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(); public static void Main() { Solve(); } static void Solve() { var n = NN; if (n == 1) { WriteLine(-1); return; } var a = new int[][] { new int[] { 0, 3 }, new int[] { 2, 1 } }; for (var i = 0; i < n - 1; ++i) { a = Double(a); } for (var i = 0; i < a.Length; i += 2) { (a[i][a.Length - i - 1], a[i + 1][a.Length - i - 2]) = (a[i + 1][a.Length - i - 2], a[i][a.Length - i - 1]); } WriteLine(string.Join("\n", a.Select(ai => string.Join(" ", ai)))); } static int[][] Double(int[][] a) { var ans = new int[a.Length * 2][]; for (var i = 0; i < ans.Length; ++i) ans[i] = new int[a.Length * 2]; for (var i = 0; i < a.Length; ++i) for (var j = 0; j < a[i].Length; ++j) { ans[i][j] = a[i][j]; ans[i + a.Length][j + a.Length] = a[i][j] + a.Length * a.Length; ans[i + a.Length][j] = a[i][j] + a.Length * a.Length * 2; ans[i][j + a.Length] = a[i][j] + a.Length * a.Length * 3; } return ans; } }