結果

問題 No.2424 Josouzai
ユーザー ducktailducktail
提出日時 2023-08-20 17:32:04
言語 Haskell
(9.8.2)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 10,733 ms
コンパイル使用メモリ 180,912 KB
実行使用メモリ 24,992 KB
最終ジャッジ日時 2024-11-30 21:00:53
合計ジャッジ時間 13,113 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 25 ms
12,288 KB
testcase_05 AC 68 ms
24,780 KB
testcase_06 AC 61 ms
24,868 KB
testcase_07 AC 59 ms
24,992 KB
testcase_08 AC 56 ms
24,780 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 13 ms
11,776 KB
testcase_11 AC 32 ms
19,088 KB
testcase_12 AC 25 ms
16,000 KB
testcase_13 AC 19 ms
12,416 KB
testcase_14 AC 28 ms
13,952 KB
testcase_15 AC 5 ms
7,936 KB
testcase_16 AC 52 ms
24,008 KB
testcase_17 AC 14 ms
10,880 KB
testcase_18 AC 18 ms
12,288 KB
testcase_19 AC 24 ms
13,696 KB
testcase_20 AC 51 ms
23,912 KB
testcase_21 AC 35 ms
17,264 KB
testcase_22 AC 19 ms
12,544 KB
testcase_23 AC 20 ms
12,544 KB
testcase_24 AC 10 ms
9,472 KB
testcase_25 AC 54 ms
24,832 KB
testcase_26 AC 34 ms
17,516 KB
testcase_27 AC 57 ms
24,692 KB
testcase_28 AC 50 ms
23,864 KB
testcase_29 AC 36 ms
17,460 KB
testcase_30 AC 12 ms
10,496 KB
testcase_31 AC 23 ms
13,440 KB
testcase_32 AC 54 ms
24,748 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 Control.Applicative
import Control.Monad
import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as B
import Data.List
import Data.Char (isSpace)

main :: IO ()
main = do
  [n, k] <- f
  unwords <$> map show <$> solve k <$> f >>= putStrLn
  where
    f = readil B.readInt <$> B.getLine

solve :: Int -> [Int] -> [Int]
solve k as = [length l, k - last l]
  where
    l = takeWhile (<= k) $ scanl1 (+) $ sort as

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