結果
問題 | No.1974 2x2 Flipper |
ユーザー | kakel-san |
提出日時 | 2022-06-10 23:46:45 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,375 bytes |
コンパイル時間 | 989 ms |
コンパイル使用メモリ | 107,648 KB |
実行使用メモリ | 35,968 KB |
最終ジャッジ日時 | 2024-09-21 07:02:11 |
合計ジャッジ時間 | 5,871 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
19,072 KB |
testcase_01 | AC | 43 ms
23,680 KB |
testcase_02 | AC | 29 ms
19,712 KB |
testcase_03 | AC | 112 ms
31,616 KB |
testcase_04 | AC | 67 ms
26,112 KB |
testcase_05 | WA | - |
testcase_06 | AC | 90 ms
28,032 KB |
testcase_07 | AC | 71 ms
26,368 KB |
testcase_08 | AC | 37 ms
21,720 KB |
testcase_09 | AC | 94 ms
28,672 KB |
testcase_10 | WA | - |
testcase_11 | AC | 76 ms
27,264 KB |
testcase_12 | AC | 112 ms
30,848 KB |
testcase_13 | AC | 77 ms
27,392 KB |
testcase_14 | AC | 62 ms
25,600 KB |
testcase_15 | AC | 126 ms
31,872 KB |
testcase_16 | WA | - |
testcase_17 | AC | 104 ms
28,800 KB |
testcase_18 | AC | 38 ms
21,160 KB |
testcase_19 | AC | 36 ms
21,260 KB |
testcase_20 | AC | 66 ms
26,112 KB |
testcase_21 | AC | 163 ms
35,840 KB |
testcase_22 | AC | 159 ms
35,840 KB |
testcase_23 | AC | 159 ms
35,968 KB |
testcase_24 | AC | 159 ms
35,712 KB |
testcase_25 | AC | 30 ms
19,072 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 void Main() { var c = NList; var (h, w) = (c[0], c[1]); var res = new int[h][]; var count = 0; for (var i = 0; i < h; ++i) { res[i] = Enumerable.Repeat(1, w).ToArray(); } if (h % 2 == 0 && w % 2 == 0) { count = h * w; } else if (h % 2 == 0) { for (var i = 0; i < h; ++i) res[i][w - 1] = 0; count = h * (w - 1); } else if (w % 2 == 0) { for (var j = 0; j < w; ++j) res[h - 1][j] = 0; count = (h - 1) * w; } else if (h <= w) { for (var i = 0; i < h; ++i) res[i][i] = 0; for (var i = h; i < w; ++i) res[h - 1][i] = 0; count = h * (w - 1); } else { for (var i = 0; i < w; ++i) res[i][i] = 0; for (var i = w; i < h; ++i) res[i][w - 1] = 0; count = (h - 1) * w; } if (h == 1 || w == 1) count = 0; WriteLine(count); WriteLine(string.Join("\n", res.Select(r => string.Join(" ", r)))); } }