結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー lvs7klvs7k
提出日時 2018-09-09 22:52:12
言語 Haskell
(9.8.2)
結果
AC  
実行時間 821 ms / 3,000 ms
コード長 193 bytes
コンパイル時間 10,113 ms
コンパイル使用メモリ 171,264 KB
実行使用メモリ 89,728 KB
最終ジャッジ日時 2024-06-06 17:15:26
合計ジャッジ時間 17,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 9 ms
8,448 KB
testcase_07 AC 51 ms
13,824 KB
testcase_08 AC 209 ms
32,256 KB
testcase_09 AC 336 ms
52,736 KB
testcase_10 AC 727 ms
84,480 KB
testcase_11 AC 748 ms
86,528 KB
testcase_12 AC 767 ms
86,656 KB
testcase_13 AC 782 ms
89,728 KB
testcase_14 AC 765 ms
85,504 KB
testcase_15 AC 771 ms
85,632 KB
testcase_16 AC 821 ms
71,168 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 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 #

module Main where

import Control.Applicative
import Control.Monad

main :: IO ()
main = do
    n <- readLn
    as <- forM [1 .. n] $ \_ -> readLn
    let ans = sum as :: Integer
    print ans
0