結果

問題 No.144 エラトステネスのざる
ユーザー code-devocode-devo
提出日時 2016-01-19 17:16:45
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 190 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 43,932 KB
最終ジャッジ日時 2024-09-21 08:03:00
合計ジャッジ時間 13,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
19,356 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 95 ms
12,160 KB
testcase_06 AC 88 ms
12,416 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 91 ms
12,160 KB
testcase_12 AC 93 ms
12,160 KB
testcase_13 AC 1,619 ms
19,968 KB
testcase_14 AC 1,609 ms
20,096 KB
testcase_15 AC 1,622 ms
19,968 KB
testcase_16 AC 1,615 ms
20,096 KB
testcase_17 AC 1,619 ms
20,224 KB
testcase_18 TLE -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

SS = gets.split
N = SS[0].to_i
P = 1 - SS[1].to_f

sum = 0

A = Array.new(N + 1, 1)
for n in 2..N do
  sum += A[n]
  m = n * 2
  while m <= N do
    A[m] *= P
    m += n
  end
end

puts sum
0