結果

問題 No.1108 移調
ユーザー satanic
提出日時 2020-07-22 20:07:20
言語 Haskell
(9.10.1)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 5,832 ms
コンパイル使用メモリ 174,208 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-13 03:53:35
合計ジャッジ時間 6,873 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

{-# LANGUAGE ScopedTypeVariables #-}
module Main where
import Data.List
import Control.Monad

readLine :: Read a => IO [a]
readLine = map read . words <$> getLine

main :: IO ()
main = do
    [n, h] :: [Int] <- readLine
    t <- readLine
    putStrLn $ unwords $ map (show . (+ h)) t
0