結果
| 問題 | No.1108 移調 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-22 20:07:20 |
| 言語 | Haskell (9.14.1) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 283 bytes |
| 記録 | |
| コンパイル時間 | 4,620 ms |
| コンパイル使用メモリ | 195,968 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2026-03-06 00:02:44 |
| 合計ジャッジ時間 | 1,922 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
{-# 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