結果
問題 | No.144 エラトステネスのざる |
ユーザー | Kaito Udagawa |
提出日時 | 2015-02-07 11:19:56 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 681 bytes |
コンパイル時間 | 4,398 ms |
コンパイル使用メモリ | 173,952 KB |
実行使用メモリ | 28,920 KB |
最終ジャッジ日時 | 2024-06-23 10:33:34 |
合計ジャッジ時間 | 3,895 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
import Data.Array.ST import Data.Array.Unboxed import Data.Functor import Debug.Trace primes :: Int -> Double -> UArray Int Double primes n p = runSTUArray (newArray (2, n) 1.0 >>= sieve 2) where sieve i arr | i >= (n `div` 2) = return arr | otherwise = erase (i * 2 - 1) >>= sieve (i + 1) where erase j | j >= (n `div` 2) = return arr | otherwise = readArray arr j >>= \ b -> writeArray arr j (p * b) >> erase (j + i - 1) main = words <$> getLine >>= \ (f0:f1:_) -> let n = read f0 :: Int p = read f1 :: Double in (putStrLn . show) (foldr (+) 0 (elems (primes n p)))