結果

問題 No.826 連絡網
ユーザー letrangerjpletrangerjp
提出日時 2019-05-03 22:25:50
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 38,188 KB
最終ジャッジ日時 2024-12-31 18:11:11
合計ジャッジ時間 61,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
19,236 KB
testcase_01 AC 101 ms
33,972 KB
testcase_02 AC 95 ms
19,364 KB
testcase_03 WA -
testcase_04 AC 396 ms
19,488 KB
testcase_05 AC 147 ms
32,560 KB
testcase_06 AC 169 ms
19,492 KB
testcase_07 AC 251 ms
25,856 KB
testcase_08 AC 191 ms
19,364 KB
testcase_09 AC 193 ms
29,824 KB
testcase_10 AC 125 ms
19,104 KB
testcase_11 AC 231 ms
29,056 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 765 ms
29,952 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!ruby -rprime

N, P = gets.split.map &:to_i
_primes = P.prime_division.to_h.keys
primes = Prime.each(N).select{|i|
  _primes.any?{|j|
    i == j || i * j <= N
  }
}
oks = [0] * (N+1)

(1..N).each{|i|
  primes.each{|pr|
    if i % pr == 0
      oks[i] = oks[i / pr] = 1
    end
  }
}

oks[1] = 0
oks[P] = 1
p oks.count(1)
0