結果

問題 No.1131 Deviation Score
ユーザー ducktailducktail
提出日時 2024-05-05 20:09:06
言語 Haskell
(9.8.2)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 9,138 ms
コンパイル使用メモリ 181,168 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-05-05 20:09:19
合計ジャッジ時間 11,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
8,960 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 33 ms
11,520 KB
testcase_03 AC 18 ms
9,856 KB
testcase_04 AC 30 ms
11,520 KB
testcase_05 AC 13 ms
9,216 KB
testcase_06 AC 32 ms
11,520 KB
testcase_07 AC 18 ms
9,856 KB
testcase_08 AC 28 ms
11,392 KB
testcase_09 AC 13 ms
9,088 KB
testcase_10 AC 28 ms
11,136 KB
testcase_11 AC 28 ms
11,264 KB
testcase_12 AC 25 ms
11,008 KB
testcase_13 AC 33 ms
11,648 KB
testcase_14 AC 9 ms
8,704 KB
testcase_15 AC 10 ms
8,448 KB
testcase_16 AC 30 ms
11,392 KB
testcase_17 AC 14 ms
9,216 KB
testcase_18 AC 36 ms
11,904 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as B
import Data.List
import Data.Char (isSpace)

main :: IO ()
main = do
  n <- readLn
  solve n <$> f >>= mapM_ print
  where
    f = readil B.readInt <$> B.getLine

solve :: Int -> [Int] -> [Int]
solve n xs = map f xs
  where
    f x = ((100 + x) * n - sm) `div` (2 * n)
    sm = sum xs

readil :: Integral a =>  (ByteString -> Maybe (a, ByteString)) -> ByteString -> [a]
readil f = unfoldr $ f . B.dropWhile isSpace
0