結果

問題 No.1974 2x2 Flipper
ユーザー simansiman
提出日時 2022-06-12 15:46:54
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-09-23 04:01:50
合計ジャッジ時間 12,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 164 ms
14,208 KB
testcase_02 AC 96 ms
12,032 KB
testcase_03 AC 551 ms
22,272 KB
testcase_04 AC 299 ms
16,128 KB
testcase_05 WA -
testcase_06 AC 414 ms
19,584 KB
testcase_07 AC 296 ms
17,408 KB
testcase_08 AC 129 ms
13,056 KB
testcase_09 AC 426 ms
18,944 KB
testcase_10 WA -
testcase_11 AC 350 ms
17,664 KB
testcase_12 AC 552 ms
21,376 KB
testcase_13 AC 371 ms
18,816 KB
testcase_14 AC 255 ms
15,488 KB
testcase_15 AC 626 ms
22,656 KB
testcase_16 WA -
testcase_17 AC 474 ms
20,992 KB
testcase_18 AC 128 ms
12,928 KB
testcase_19 AC 133 ms
13,184 KB
testcase_20 AC 290 ms
15,872 KB
testcase_21 AC 787 ms
25,984 KB
testcase_22 AC 781 ms
25,856 KB
testcase_23 AC 785 ms
25,472 KB
testcase_24 WA -
testcase_25 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

H, W = gets.split.map(&:to_i)
G = Array.new(H) { Array.new(W, 0) }

(H - 1).times do |y|
  (W - 1).times do |x|
    cnt = 0
    cnt += 1 if G[y][x] == 0
    cnt += 1 if G[y][x + 1] == 0
    cnt += 1 if G[y + 1][x] == 0
    cnt += 1 if G[y + 1][x + 1] == 0

    if cnt > 2
      G[y][x] ^= 1
      G[y][x + 1] ^= 1
      G[y + 1][x] ^= 1
      G[y + 1][x + 1] ^= 1
    end
  end
end

ans = G.map { |row| row.count(1) }.sum
puts ans
puts G.map { |row| row.join(' ') }
0