結果

問題 No.1974 2x2 Flipper
ユーザー magurofIymagurofIy
提出日時 2022-06-11 10:24:31
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-09-21 19:06:01
合計ジャッジ時間 11,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 147 ms
14,336 KB
testcase_02 AC 97 ms
12,288 KB
testcase_03 AC 395 ms
22,400 KB
testcase_04 AC 229 ms
16,384 KB
testcase_05 WA -
testcase_06 AC 307 ms
19,456 KB
testcase_07 AC 229 ms
17,536 KB
testcase_08 AC 117 ms
13,184 KB
testcase_09 AC 314 ms
18,944 KB
testcase_10 WA -
testcase_11 AC 265 ms
17,536 KB
testcase_12 AC 391 ms
21,504 KB
testcase_13 AC 273 ms
18,944 KB
testcase_14 AC 203 ms
15,616 KB
testcase_15 AC 443 ms
22,912 KB
testcase_16 WA -
testcase_17 AC 342 ms
21,120 KB
testcase_18 AC 121 ms
13,056 KB
testcase_19 AC 122 ms
13,184 KB
testcase_20 AC 224 ms
16,000 KB
testcase_21 AC 549 ms
25,856 KB
testcase_22 AC 547 ms
25,728 KB
testcase_23 AC 546 ms
25,600 KB
testcase_24 WA -
testcase_25 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

H, W = gets.split.map(&:to_i)

grid = Array.new(H) { [0] * W }

(H / 2 * 2).times do |i|
  (W / 2 * 2).times do |j|
    grid[i][j] = 1
  end
end
if H == 1 or W == 1
  puts 0
elsif H.even? or W.even?
  puts (H / 2 * 2) * (W / 2 * 2)
else
  puts (H / 2 * 2) * (W / 2 * 2) + 2
  (H - 2 ... H).each do |i|
    (W - 2 ... W).each do |j|
      grid[i][j] ^= 1
    end
  end
end

puts grid.map { |row| row * " " }
0