結果

問題 No.1946 ロッカーの問題
ユーザー tomeruntomerun
提出日時 2022-05-20 21:44:10
言語 Crystal
(1.11.2)
結果
AC  
実行時間 290 ms / 3,000 ms
コード長 383 bytes
コンパイル時間 13,373 ms
コンパイル使用メモリ 294,592 KB
実行使用メモリ 15,792 KB
最終ジャッジ日時 2024-09-20 07:42:59
合計ジャッジ時間 14,523 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 234 ms
15,792 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 53 ms
7,296 KB
testcase_09 AC 201 ms
13,824 KB
testcase_10 AC 162 ms
12,032 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 30 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 109 ms
7,168 KB
testcase_18 AC 290 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = read_line.split.map(&.to_i)
a = read_line.split.map(&.to_i)
open = Array.new(n + 1, 0)
a.each do |i|
  open[i] = 1
end
ans = 0
n.downto(1) do |i|
  if open[i] == 0
    ans += 1
  else
    d = 1
    while d * d < i
      if i % d == 0
        open[i // d] ^= 1
        open[d] ^= 1
      end
      d += 1
    end
    if d * d == i
      open[d] ^= 1
    end
  end
end
puts ans
0