結果

問題 No.1946 ロッカーの問題
ユーザー simansiman
提出日時 2022-05-24 02:07:04
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,056 ms / 3,000 ms
コード長 359 bytes
コンパイル時間 876 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-09-20 13:30:30
合計ジャッジ時間 9,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 660 ms
61,568 KB
testcase_03 AC 1,049 ms
69,504 KB
testcase_04 AC 666 ms
61,696 KB
testcase_05 AC 475 ms
47,616 KB
testcase_06 AC 555 ms
52,352 KB
testcase_07 AC 406 ms
43,136 KB
testcase_08 AC 327 ms
32,256 KB
testcase_09 AC 876 ms
64,896 KB
testcase_10 AC 752 ms
60,032 KB
testcase_11 AC 103 ms
13,568 KB
testcase_12 AC 334 ms
32,384 KB
testcase_13 AC 77 ms
12,160 KB
testcase_14 AC 78 ms
12,160 KB
testcase_15 AC 115 ms
16,256 KB
testcase_16 AC 79 ms
12,160 KB
testcase_17 AC 511 ms
40,704 KB
testcase_18 AC 1,056 ms
68,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

E = Array.new(N + 1) { [] }

1.upto(N) do |i|
  i.step(N, i) do |j|
    E[j] << i
  end
end

opened = Array.new(N + 1, false)

A.each do |a|
  opened[a] = true
end

ans = 0

N.downto(1) do |i|
  if opened[i]
    E[i].each do |j|
      opened[j] ^= true
    end
  else
    ans += 1
  end
end

puts ans
0