結果

問題 No.144 エラトステネスのざる
ユーザー hytkxdhytkxd
提出日時 2023-09-01 16:39:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,085 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-06-11 02:34:23
合計ジャッジ時間 9,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 81 ms
12,160 KB
testcase_02 AC 80 ms
12,416 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 75 ms
12,160 KB
testcase_06 AC 76 ms
12,416 KB
testcase_07 AC 74 ms
12,416 KB
testcase_08 AC 77 ms
12,416 KB
testcase_09 AC 75 ms
12,160 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 81 ms
12,544 KB
testcase_12 AC 91 ms
12,288 KB
testcase_13 AC 1,037 ms
19,968 KB
testcase_14 AC 1,040 ms
20,096 KB
testcase_15 AC 988 ms
20,096 KB
testcase_16 AC 1,085 ms
19,968 KB
testcase_17 AC 1,002 ms
20,224 KB
testcase_18 AC 1,006 ms
20,096 KB
testcase_19 AC 976 ms
20,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/local/bin/ruby
class EratosthenesLikeSieve
  def initialize(*arg)
    @n,@k = arg
  end
  def ans
    r = 0
    sigma = Array.new(@n+1,0)
    pb = 1-@k
    i=2
    while i <= @n
      last = @n/i
      j=2
      while j<=last
        sigma[j*i]+=1
        j+=1
      end
      r += pb**sigma[i]
      i+=1
    end
    r
  end
end
### END: class EratosthenesLikeSieve
iod = STDIN
n,k = iod.gets.split
puts EratosthenesLikeSieve.new(n.to_i,k.to_f).ans
exit 0

0